X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=env.c;h=edf998983a88be540d639946ed9c8b669711f07f;hb=ecade79a63e9abad933e3705a02533620ddc92b5;hp=939753c5ac3d8742f4e517510a324d5885215190;hpb=af7d73c7ab76ad81fed78b7f5c024daf1af87d9d;p=~andy%2Ffetchmail diff --git a/env.c b/env.c index 939753c5..edf99898 100644 --- a/env.c +++ b/env.c @@ -30,7 +30,9 @@ #include #endif +#ifndef HAVE_DECL_GETENV extern char *getenv(const char *); /* needed on sysV68 R3V7.1. */ +#endif void envquery(int argc, char **argv) /* set up basic stuff from the environment (including the rc file name) */ @@ -105,6 +107,8 @@ void envquery(int argc, char **argv) user = xstrdup(pwp->pw_name); } + endpwent(); + /* compute user's home directory */ home = getenv("HOME_ETC"); if (!home && !(home = getenv("HOME"))) @@ -159,7 +163,7 @@ char *host_fqdn(int required) memset(&hints, 0, sizeof hints); hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; - hints.ai_flags=AI_CANONNAME; + hints.ai_flags = AI_CANONNAME; e = fm_getaddrinfo(tmpbuf, NULL, &hints, &res); if (e) { @@ -290,7 +294,7 @@ char *visbuf(const char *buf) needed = strlen(buf) * 5 + 1; /* worst case: HEX, plus NUL byte */ - if (needed > vbufs) { + if (!vbuf || needed > vbufs) { vbufs = needed; vbuf = (char *)xrealloc(vbuf, vbufs); } @@ -318,7 +322,7 @@ char *visbuf(const char *buf) buf++; } } - *tp++ = '\0'; + *tp = '\0'; return(vbuf); } /* env.c ends here */