X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fmts.c;h=cc5ff8e3bbfdee77ffc65d35c59831323233d224;hp=551fd1fed97277d6dcac1681bbc29bb6b2725443;hb=b47dac6540ed952b95dbdce78d2a5f48ff0db86b;hpb=dee387b53ab0d42922f857b60d6f980c9e79d16f diff --git a/sbr/mts.c b/sbr/mts.c index 551fd1f..cc5ff8e 100644 --- a/sbr/mts.c +++ b/sbr/mts.c @@ -3,10 +3,15 @@ * mts.c -- definitions for the mail transport system * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include /* for snprintf() */ #include +#include #define nmhetcdir(file) NMHETCDIR#file @@ -23,12 +28,10 @@ #define NOTOK (-1) #define OK 0 -extern int errno; - /* * static prototypes */ -static char *tailor_value (char *); +static char *tailor_value (unsigned char *); static void getuserinfo (void); /* @@ -169,7 +172,8 @@ static struct bind binds[] = { void mts_init (char *name) { - char *bp, *cp, buffer[BUFSIZ]; + unsigned char *bp; + char *cp, buffer[BUFSIZ]; struct bind *b; FILE *fp; static int inited = 0; @@ -230,7 +234,7 @@ mts_init (char *name) */ static char * -tailor_value (char *s) +tailor_value (unsigned char *s) { int i, r; char *bp; @@ -269,8 +273,8 @@ tailor_value (char *s) *bp = 0; len = strlen (buffer) + 1; - if ((bp = malloc (len))) - memcpy (bp, buffer, len); + bp = mh_xmalloc (len); + memcpy (bp, buffer, len); return bp; } @@ -403,7 +407,8 @@ getfullname (void) static void getuserinfo (void) { - register char *cp, *np; + register unsigned char *cp; + register char *np; register struct passwd *pw; #ifdef KPOP