diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-01-01 10:08:49 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-01-01 10:08:49 +0000 |
commit | 80b293666a65080a54e86037afd2f28290af71d4 (patch) | |
tree | 0250848da578fa1bba83f3c7e591b69b584468c8 | |
parent | 01941b3dfb4aaf7ecdf342636986a54839cdff06 (diff) |
no trailing "\n" for debug()
-rw-r--r-- | usr.bin/ssh/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/misc.c b/usr.bin/ssh/misc.c index d5171e0e483..608e6763a85 100644 --- a/usr.bin/ssh/misc.c +++ b/usr.bin/ssh/misc.c @@ -24,7 +24,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: misc.c,v 1.38 2006/01/01 08:59:27 stevesk Exp $"); +RCSID("$OpenBSD: misc.c,v 1.39 2006/01/01 10:08:48 stevesk Exp $"); #include <net/if.h> @@ -552,7 +552,7 @@ tun_open(int tun, int mode) break; } } else { - debug("%s: invalid tunnel %u\n", __func__, tun); + debug("%s: invalid tunnel %u", __func__, tun); return (-1); } |