diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-09-19 14:53:15 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-09-19 14:53:15 +0000 |
commit | 7b5806ae55027c83a25f2ca7c1d3580d9e794f1a (patch) | |
tree | 1de11a67afcb80f3c5b3e0342c23c2e7d31e1cb2 /usr.bin/ssh | |
parent | b83f82a72e5b848bf56aebbf30d29282ebe77a32 (diff) |
relegate some verbose() to debug(); ok markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/compat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index 406b47c2571..e49aa0d2aba 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: compat.c,v 1.63 2002/04/10 08:21:47 markus Exp $"); +RCSID("$OpenBSD: compat.c,v 1.64 2002/09/19 14:53:14 stevesk Exp $"); #include "buffer.h" #include "packet.h" @@ -39,13 +39,13 @@ int datafellows = 0; void enable_compat20(void) { - verbose("Enabling compatibility mode for protocol 2.0"); + debug("Enabling compatibility mode for protocol 2.0"); compat20 = 1; } void enable_compat13(void) { - verbose("Enabling compatibility mode for protocol 1.3"); + debug("Enabling compatibility mode for protocol 1.3"); compat13 = 1; } /* datafellows bug compatibility */ |