X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fidcache.c;h=9065cc8988519e7ac5bb62471dc088a03dd81b25;hb=f90fd0e8e5816491d8bb6ff68a250390815022ec;hp=8fb8bedc66e095947bb33318ba0b0791c4a72683;hpb=dc9484f5465a7f99163c4848e4ad45bf2df528f5;p=gnulib.git diff --git a/lib/idcache.c b/lib/idcache.c index 8fb8bedc6..9065cc898 100644 --- a/lib/idcache.c +++ b/lib/idcache.c @@ -1,12 +1,12 @@ /* idcache.c -- map user and group IDs, cached for speed - Copyright (C) 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007 - Free Software Foundation, Inc. + Copyright (C) 1985, 1988-1990, 1997-1998, 2003, 2005-2007, 2009-2011 Free + Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,8 +14,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -74,10 +73,10 @@ getuser (uid_t uid) for (tail = user_alist; tail; tail = tail->next) { if (tail->id.u == uid) - { - match = tail; - break; - } + { + match = tail; + break; + } } if (match == NULL) @@ -124,7 +123,7 @@ getuidbyname (const char *user) if (!pwent && strspn (user, digits) < strlen (user)) { setenv ("USER", user, 1); - pwent = getpwnam (user); /* now it will succeed */ + pwent = getpwnam (user); /* now it will succeed */ } #endif @@ -156,10 +155,10 @@ getgroup (gid_t gid) for (tail = group_alist; tail; tail = tail->next) { if (tail->id.g == gid) - { - match = tail; - break; - } + { + match = tail; + break; + } } if (match == NULL) @@ -206,7 +205,7 @@ getgidbyname (const char *group) if (!grent && strspn (group, digits) < strlen (group)) { setenv ("GROUP", group, 1); - grent = getgrnam (group); /* now it will succeed */ + grent = getgrnam (group); /* now it will succeed */ } #endif