X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fslocal.c;h=765bcbd621cde808dc44353f28b08b92b19210ad;hb=dfecfa4b4b77983ddf8253b1b8effaf5c1a0ce80;hp=c0f0922db1a7a7fbadf896ae9bb73f4e68c24873;hpb=403bc56ffdf4679f5159d926c5774ad042c55ac9;p=mmh diff --git a/uip/slocal.c b/uip/slocal.c index c0f0922..765bcbd 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -319,7 +319,7 @@ main(int argc, char **argv) if (!(now = dlocaltimenow())) { adios(NULL, "unable to ascertain local time"); } - snprintf(ddate, sizeof(ddate), "Delivery-Date: %s\n", dtimenow(0)); + snprintf(ddate, sizeof(ddate), "Delivery-Date: %s\n", dtimenow()); /* ** Copy the message to a temporary file @@ -1107,6 +1107,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;