X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fslocal.c;h=08a3e28b7d8c4d5e2b1cfe80f464766b98e54c45;hp=817a4114d0aa16c67f19bf49194e77fb250ee0f1;hb=13f84dd50ca5754391dbd3296a5c7425f9363600;hpb=1524cb8c0b86a854149d7859d6a2503d61dbaa36 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;