From: Ulrich Drepper Date: Mon, 17 Aug 1998 10:08:24 +0000 (+0000) Subject: (putpwent): Fix typos. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8d1b73199c3ff17ab0eac7cafd6e15c2a17e825;p=thirdparty%2Fglibc.git (putpwent): Fix typos. --- diff --git a/pwd/putpwent.c b/pwd/putpwent.c index a63d86b1898..18ddbf911f8 100644 --- a/pwd/putpwent.c +++ b/pwd/putpwent.c @@ -20,7 +20,7 @@ Cambridge, MA 02139, USA. */ #include #include -#define _S(x) x ? x : "" +#define _S(x) x ? x : "" /* Write an entry to the given stream. This must know the format of the password file. */ @@ -36,7 +36,7 @@ putpwent (p, stream) } if (fprintf (stream, "%s:%s:%u:%u:%s:%s:%s\n", - p->pw_name, _(p->pw_passwd), + p->pw_name, _S(p->pw_passwd), p->pw_uid, p->pw_gid, _S(p->pw_gecos), _S(p->pw_dir), _S(p->pw_shell)) < 0) return(-1);