diff options
author | 2000-12-09 23:51:11 +0000 | |
---|---|---|
committer | 2000-12-09 23:51:11 +0000 | |
commit | e5d4b29d8dd73566e17c87615d627da3e721328e (patch) | |
tree | b89453a79920b2d5439a4075440a7ff9b128b2c9 | |
parent | avoid incorrect free; reported by danh@nfol.com, my fix (diff) | |
download | wireguard-openbsd-e5d4b29d8dd73566e17c87615d627da3e721328e.tar.xz wireguard-openbsd-e5d4b29d8dd73566e17c87615d627da3e721328e.zip |
remove unnecessary '\n'
-rw-r--r-- | usr.bin/ssh/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index 65495764edc..fb3c7475366 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.31 2000/12/06 22:58:14 markus Exp $"); +RCSID("$OpenBSD: compat.c,v 1.32 2000/12/09 23:51:11 provos Exp $"); #include "ssh.h" #include "packet.h" @@ -88,7 +88,7 @@ compat_datafellows(const char *version) ret = regexec(®, version, 0, NULL, 0); regfree(®); if (ret == 0) { - debug("match: %s pat %s\n", version, check[i].pat); + debug("match: %s pat %s", version, check[i].pat); datafellows = check[i].bugs; return; } |