Commit ff2c5385 ff2c5385c5611886f4710a99cb2b36e66e64adfd by Alain Magloire

Cleanup.

1 parent 33c340f1
...@@ -29,8 +29,6 @@ ...@@ -29,8 +29,6 @@
29 29
30 #include <imap0.h> 30 #include <imap0.h>
31 31
32 #define PROP_RFC822 1
33
34 /* Variable use for the registrar. */ 32 /* Variable use for the registrar. */
35 static struct _record _imap_record = 33 static struct _record _imap_record =
36 { 34 {
......
...@@ -205,7 +205,7 @@ property_unset (property_t prop, const char *k) ...@@ -205,7 +205,7 @@ property_unset (property_t prop, const char *k)
205 int 205 int
206 property_is_set (property_t prop, const char *k) 206 property_is_set (property_t prop, const char *k)
207 { 207 {
208 int n = 0; 208 size_t n = 0;
209 property_get_value (prop, k, NULL, 0, &n); 209 property_get_value (prop, k, NULL, 0, &n);
210 return (n != 0); 210 return (n != 0);
211 } 211 }
......