summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-12-10 02:01:50 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-12-10 02:01:50 +0000
commit971c97317fd535b363ff6414d6f266325f7a3842 (patch)
treeb0b31eb13518c1c5e5a413aaa1ce8da5097c87e5 /compat.c
parentfa1b3d08421d263694d5fb3989d796a57d714f2a (diff)
Another CVS sync w/ OpenBSD
- provos@cvs.openbsd.org 2000/12/09 23:51:11 [compat.c] remove unnecessary '\n'
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat.c b/compat.c
index 291cfc743..c2574b2ed 100644
--- a/compat.c
+++ b/compat.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: compat.c,v 1.31 2000/12/06 22:58:14 markus Exp $"); 26RCSID("$OpenBSD: compat.c,v 1.32 2000/12/09 23:51:11 provos Exp $");
27 27
28#include "ssh.h" 28#include "ssh.h"
29#include "packet.h" 29#include "packet.h"
@@ -92,7 +92,7 @@ compat_datafellows(const char *version)
92 ret = regexec(&reg, version, 0, NULL, 0); 92 ret = regexec(&reg, version, 0, NULL, 0);
93 regfree(&reg); 93 regfree(&reg);
94 if (ret == 0) { 94 if (ret == 0) {
95 debug("match: %s pat %s\n", version, check[i].pat); 95 debug("match: %s pat %s", version, check[i].pat);
96 datafellows = check[i].bugs; 96 datafellows = check[i].bugs;
97 return; 97 return;
98 } 98 }