summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--compat.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d3e352030..18339c47c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,9 @@
12 - markus@cvs.openbsd.org 2000/12/09 14:06:54 12 - markus@cvs.openbsd.org 2000/12/09 14:06:54
13 [ssh-agent.c] 13 [ssh-agent.c]
14 extern int optind; from stevesk@sweden.hp.com 14 extern int optind; from stevesk@sweden.hp.com
15 - provos@cvs.openbsd.org 2000/12/09 23:51:11
16 [compat.c]
17 remove unnecessary '\n'
15 18
1620001209 1920001209
17 - (bal) OpenBSD CVS updates: 20 - (bal) OpenBSD CVS updates:
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 }