X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-idpriv-drop.c;h=1a22ccf23e7b71894a8d9f36d8b28b1db511cab0;hb=1bb384c44db25aef8f8b455cef22af32d8401abc;hp=7157ef3c1f08bbd3663beee94685881bab68fd7a;hpb=987e5651e8d1c5aa933c9ce88562806af4093702;p=gnulib.git diff --git a/tests/test-idpriv-drop.c b/tests/test-idpriv-drop.c index 7157ef3c1..1a22ccf23 100644 --- a/tests/test-idpriv-drop.c +++ b/tests/test-idpriv-drop.c @@ -1,5 +1,5 @@ /* Test of dropping uid/gid privileges of the current process permanently. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2011 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 @@ -38,7 +38,7 @@ show_uids () (int) real, (int) effective, (int) saved); #elif HAVE_GETEUID printf ("uids: real=%d effective=%d", - (int) getuid (), (int) geteuid()); + (int) getuid (), (int) geteuid ()); #elif HAVE_GETUID printf ("uids: real=%d", (int) getuid ()); @@ -57,7 +57,7 @@ show_gids () (int) real, (int) effective, (int) saved); #elif HAVE_GETEGID printf ("gids: real=%d effective=%d", - (int) getgid (), (int) getegid()); + (int) getgid (), (int) getegid ()); #elif HAVE_GETGID printf ("gids: real=%d", (int) getgid ());