summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
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 }