diff options
-rw-r--r-- | fetchmail.h | 4 | ||||
-rw-r--r-- | mx.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fetchmail.h b/fetchmail.h index efb16e47..4d4022be 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -122,7 +122,7 @@ struct runctl struct idlist { - char *id; + unsigned char *id; union { struct @@ -135,7 +135,7 @@ struct idlist #define UID_EXPUNGED 3 /* this message has been expunged */ } status; - char *id2; + unsigned char *id2; } val; struct idlist *next; }; @@ -2,8 +2,8 @@ struct mxentry { - char *name; - int pref; + unsigned char *name; + int pref; }; extern struct mxentry * getmxrecords(const char *); |