summaryrefslogtreecommitdiff
path: root/openbsd-compat/port-aix.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-06-28 18:11:19 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-06-28 18:11:19 +1000
commit5288cb242aeea747dba400997c376035578a8445 (patch)
tree8f2e1a0917e5d0dbbd9dc0a4e7ad2e546a756a25 /openbsd-compat/port-aix.c
parente59b50879819db3bbb189ba7e069950a8991ea05 (diff)
- (dtucker) [openbsd-compat/port-aix.c] Missing __func__.
Diffstat (limited to 'openbsd-compat/port-aix.c')
-rw-r--r--openbsd-compat/port-aix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd-compat/port-aix.c b/openbsd-compat/port-aix.c
index bf7e98652..d0c9a49e8 100644
--- a/openbsd-compat/port-aix.c
+++ b/openbsd-compat/port-aix.c
@@ -181,7 +181,7 @@ sys_auth_allowed_user(struct passwd *pw)
181 * loginrestrictions will always fail due to insufficient privilege). 181 * loginrestrictions will always fail due to insufficient privilege).
182 */ 182 */
183 if (pw->pw_uid == 0 || geteuid() != 0) { 183 if (pw->pw_uid == 0 || geteuid() != 0) {
184 debug3("%s: not checking"); 184 debug3("%s: not checking", __func__);
185 return 1; 185 return 1;
186 } 186 }
187 187