From 5288cb242aeea747dba400997c376035578a8445 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Mon, 28 Jun 2004 18:11:19 +1000 Subject: [PATCH] - (dtucker) [openbsd-compat/port-aix.c] Missing __func__. --- ChangeLog | 3 ++- openbsd-compat/port-aix.c | 2 +- 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 @@ 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 stat+rename() in such cases. + - (dtucker) [openbsd-compat/port-aix.c] Missing __func__. 20040626 - (djm) OpenBSD CVS Sync @@ -1442,4 +1443,4 @@ - (djm) Trim deprecated options from INSTALL. Mention UsePAM - (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 $ 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) * loginrestrictions will always fail due to insufficient privilege). */ if (pw->pw_uid == 0 || geteuid() != 0) { - debug3("%s: not checking"); + debug3("%s: not checking", __func__); return 1; }