From 13f72b91afa9b4e33c407af4622f4a832775e834 Mon Sep 17 00:00:00 2001 From: dtucker Date: Mon, 28 Jun 2004 08:11:19 +0000 Subject: [PATCH] - (dtucker) [openbsd-compat/port-aix.c] Missing __func__. --- ChangeLog | 1 + openbsd-compat/port-aix.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7c50e659..8489e343 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 diff --git a/openbsd-compat/port-aix.c b/openbsd-compat/port-aix.c index bf7e9865..d0c9a49e 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; } -- 2.45.2