diff options
author | 2003-04-08 20:21:28 +0000 | |
---|---|---|
committer | 2003-04-08 20:21:28 +0000 | |
commit | 7e56a8a60ec722a5f455b4ae9ceeb1ed1879c77a (patch) | |
tree | 4fa5113b9414d5d3d8016333d209cab2d6facefd /usr.bin/ssh/dispatch.c | |
parent | easy sprintf in code we don't use (diff) | |
download | wireguard-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/dispatch.c')
-rw-r--r-- | usr.bin/ssh/dispatch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/dispatch.c b/usr.bin/ssh/dispatch.c index ce32bc22f21..c5ff65031f2 100644 --- a/usr.bin/ssh/dispatch.c +++ b/usr.bin/ssh/dispatch.c @@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: dispatch.c,v 1.15 2002/01/11 13:39:36 markus Exp $"); +RCSID("$OpenBSD: dispatch.c,v 1.16 2003/04/08 20:21:28 itojun Exp $"); #include "ssh1.h" #include "ssh2.h" @@ -39,7 +39,7 @@ dispatch_fn *dispatch[DISPATCH_MAX]; void dispatch_protocol_error(int type, u_int32_t seq, void *ctxt) { - log("dispatch_protocol_error: type %d seq %u", type, seq); + logit("dispatch_protocol_error: type %d seq %u", type, seq); if (!compat20) fatal("protocol error"); packet_start(SSH2_MSG_UNIMPLEMENTED); @@ -50,7 +50,7 @@ dispatch_protocol_error(int type, u_int32_t seq, void *ctxt) void dispatch_protocol_ignore(int type, u_int32_t seq, void *ctxt) { - log("dispatch_protocol_ignore: type %d seq %u", type, seq); + logit("dispatch_protocol_ignore: type %d seq %u", type, seq); } void dispatch_init(dispatch_fn *dflt) |