summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/log.h
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/log.h
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/log.h')
-rw-r--r--usr.bin/ssh/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/log.h b/usr.bin/ssh/log.h
index f2971167863..79c34e00d08 100644
--- a/usr.bin/ssh/log.h
+++ b/usr.bin/ssh/log.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.h,v 1.8 2002/07/19 15:43:33 markus Exp $ */
+/* $OpenBSD: log.h,v 1.9 2003/04/08 20:21:28 itojun Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -50,7 +50,7 @@ LogLevel log_level_number(char *);
void fatal(const char *, ...) __attribute__((format(printf, 1, 2)));
void error(const char *, ...) __attribute__((format(printf, 1, 2)));
-void log(const char *, ...) __attribute__((format(printf, 1, 2)));
+void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));