summaryrefslogtreecommitdiff
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
parente59b50879819db3bbb189ba7e069950a8991ea05 (diff)
- (dtucker) [openbsd-compat/port-aix.c] Missing __func__.
-rw-r--r--ChangeLog3
-rw-r--r--openbsd-compat/port-aix.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ac1145056..62fc76a72 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
6 rename handling for Linux which returns EPERM for link() on (at least some) 6 rename handling for Linux which returns EPERM for link() on (at least some)
7 filesystems that do not support hard links. sftp-server will fall back to 7 filesystems that do not support hard links. sftp-server will fall back to
8 stat+rename() in such cases. 8 stat+rename() in such cases.
9 - (dtucker) [openbsd-compat/port-aix.c] Missing __func__.
9 10
1020040626 1120040626
11 - (djm) OpenBSD CVS Sync 12 - (djm) OpenBSD CVS Sync
@@ -1442,4 +1443,4 @@
1442 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 1443 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
1443 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 1444 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
1444 1445
1445$Id: ChangeLog,v 1.3456 2004/06/28 06:01:19 dtucker Exp $ 1446$Id: ChangeLog,v 1.3457 2004/06/28 08:11:19 dtucker Exp $
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