X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fslocal.c;h=9d468025e5e7e0fc87091524d1fcb7239c4b0a8a;hb=921908704b980c90c3c68545be7f4d42718bfba4;hp=b83a2686ad08bf2c61d21d6692dcc77a331110cc;hpb=2e5668919988fce4e523cbf2294698841b1106a0;p=mmh diff --git a/uip/slocal.c b/uip/slocal.c index b83a268..9d46802 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -59,11 +59,11 @@ static struct swit switches[] = { #define VERBSW 8 { "verbose", 0 }, #define NVERBSW 9 - { "noverbose", 0 }, + { "noverbose", 2 }, #define DEBUGSW 10 { "debug", 0 }, #define VERSIONSW 11 - { "version", 0 }, + { "Version", 0 }, #define HELPSW 12 { "help", 0 }, { NULL, 0 } @@ -174,9 +174,7 @@ main(int argc, char **argv) char mailbox[BUFSIZ], tmpfil[BUFSIZ]; char **argp, **arguments; -#ifdef LOCALE setlocale(LC_ALL, ""); -#endif invo_name = mhbasename(*argv); /* foil search of user profile/context */ @@ -1107,6 +1105,7 @@ get_sender(char *envelope, char **sender) i = strlen("From "); strncpy(buffer, envelope + i, sizeof(buffer)); + buffer[sizeof buffer -1] = '\0'; /* ensure termination */ if ((cp = strchr(buffer, '\n'))) { *cp = '\0'; cp -= 24;