- (dtucker) [openbsd-compat/port-aix.c] Missing __func__.

This commit is contained in:
Darren Tucker 2004-06-28 18:11:19 +10:00
parent e59b508798
commit 5288cb242a
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@
rename handling for Linux which returns EPERM for link() on (at least some) rename handling for Linux which returns EPERM for link() on (at least some)
filesystems that do not support hard links. sftp-server will fall back to filesystems that do not support hard links. sftp-server will fall back to
stat+rename() in such cases. stat+rename() in such cases.
- (dtucker) [openbsd-compat/port-aix.c] Missing __func__.
20040626 20040626
- (djm) OpenBSD CVS Sync - (djm) OpenBSD CVS Sync
@ -1442,4 +1443,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3456 2004/06/28 06:01:19 dtucker Exp $ $Id: ChangeLog,v 1.3457 2004/06/28 08:11:19 dtucker Exp $

View File

@ -181,7 +181,7 @@ sys_auth_allowed_user(struct passwd *pw)
* loginrestrictions will always fail due to insufficient privilege). * loginrestrictions will always fail due to insufficient privilege).
*/ */
if (pw->pw_uid == 0 || geteuid() != 0) { if (pw->pw_uid == 0 || geteuid() != 0) {
debug3("%s: not checking"); debug3("%s: not checking", __func__);
return 1; return 1;
} }