X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fgetlogin_r.c;h=bb89f6e6028467d8c221518cbd86bf0813c5e34a;hb=20229ba96d971f97ff03ab74eeb4e7de1acccf98;hp=c02db2fe6559e8370c3f126ed931cc4bb13eacde;hpb=2eb4c7c4b75c78250ba27a844e3d5f1958c113b6;p=gnulib.git diff --git a/lib/getlogin_r.c b/lib/getlogin_r.c index c02db2fe6..bb89f6e60 100644 --- a/lib/getlogin_r.c +++ b/lib/getlogin_r.c @@ -1,6 +1,6 @@ /* Provide a working getlogin_r for systems which lack it. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,24 +18,19 @@ /* written by Paul Eggert and Derek Price */ -#if HAVE_CONFIG_H -# include -#endif +#include -#include "getlogin_r.h" +/* Specification. */ +#include #include #include -#if HAVE_UNISTD_H -# include -#endif - #if !HAVE_DECL_GETLOGIN char *getlogin (void); #endif -/* See getlogin_r.h for documentation. */ +/* See unistd_.h for documentation. */ int getlogin_r (char *name, size_t size) { @@ -44,8 +39,15 @@ getlogin_r (char *name, size_t size) errno = 0; n = getlogin (); + + /* A system function like getlogin_r is never supposed to set errno + to zero, so make sure errno is nonzero here. ENOENT is a + reasonable errno value if getlogin returns NULL. */ + if (!errno) + errno = ENOENT; + if (!n) - return errno ? errno : ENOENT; + return errno; nlen = strlen (n); if (size <= nlen) return ERANGE;