From 1b0445caadad8c59d0fc9ead943d4aa3f0f59275 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 28 Jun 2000 10:13:59 +0000 Subject: Handle 8-bit characters in uid items. svn path=/trunk/; revision=2911 --- fetchmail.h | 4 ++-- 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; }; diff --git a/mx.h b/mx.h index cc0e28d5..2aedf8a3 100644 --- a/mx.h +++ b/mx.h @@ -2,8 +2,8 @@ struct mxentry { - char *name; - int pref; + unsigned char *name; + int pref; }; extern struct mxentry * getmxrecords(const char *); -- cgit v1.2.3