X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fslocal.c;h=08a3e28b7d8c4d5e2b1cfe80f464766b98e54c45;hb=7edb0cbc236244d996d1e2ae1d58d0e9f7d98062;hp=817a4114d0aa16c67f19bf49194e77fb250ee0f1;hpb=d2f12554a254e814dcdafb3828fc0d9936154eef;p=mmh diff --git a/uip/slocal.c b/uip/slocal.c index 817a411..08a3e28 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -683,7 +683,7 @@ static int split (char *cp, char **vec) { int i; - char *s; + unsigned char *s; s = cp; @@ -1232,8 +1232,8 @@ static void get_sender (char *envelope, char **sender) { int i; - char *cp; - char buffer[BUFSIZ]; + unsigned char *cp; + unsigned char buffer[BUFSIZ]; if (envelope == NULL) { *sender = getcpy (""); @@ -1412,7 +1412,7 @@ static char * trim (char *cp) { char buffer[BUFSIZ*4]; - char *bp, *sp; + unsigned char *bp, *sp; if (cp == NULL) return NULL;