summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sftp-client.c
diff options
context:
space:
mode:
authoritojun <itojun@openbsd.org>2003-04-08 20:21:28 +0000
committeritojun <itojun@openbsd.org>2003-04-08 20:21:28 +0000
commit7e56a8a60ec722a5f455b4ae9ceeb1ed1879c77a (patch)
tree4fa5113b9414d5d3d8016333d209cab2d6facefd /usr.bin/ssh/sftp-client.c
parenteasy sprintf in code we don't use (diff)
downloadwireguard-openbsd-7e56a8a60ec722a5f455b4ae9ceeb1ed1879c77a.tar.xz
wireguard-openbsd-7e56a8a60ec722a5f455b4ae9ceeb1ed1879c77a.zip
rename log() into logit() to avoid name conflict. markus ok, from netbsd
Diffstat (limited to 'usr.bin/ssh/sftp-client.c')
-rw-r--r--usr.bin/ssh/sftp-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-client.c b/usr.bin/ssh/sftp-client.c
index 47935e76e2b..8441d4afffc 100644
--- a/usr.bin/ssh/sftp-client.c
+++ b/usr.bin/ssh/sftp-client.c
@@ -28,7 +28,7 @@
/* XXX: copy between two remote sites */
#include "includes.h"
-RCSID("$OpenBSD: sftp-client.c,v 1.42 2003/03/05 22:33:43 markus Exp $");
+RCSID("$OpenBSD: sftp-client.c,v 1.43 2003/04/08 20:21:29 itojun Exp $");
#include <sys/queue.h>
@@ -507,7 +507,7 @@ do_lstat(struct sftp_conn *conn, char *path, int quiet)
if (quiet)
debug("Server version does not support lstat operation");
else
- log("Server version does not support lstat operation");
+ logit("Server version does not support lstat operation");
return(do_stat(conn, path, quiet));
}