]> andersk Git - openssh.git/commitdiff
Another CVS sync w/ OpenBSD
authormouring <mouring>
Sun, 10 Dec 2000 02:01:50 +0000 (02:01 +0000)
committermouring <mouring>
Sun, 10 Dec 2000 02:01:50 +0000 (02:01 +0000)
   - provos@cvs.openbsd.org 2000/12/09 23:51:11
     [compat.c]
     remove unnecessary '\n'

ChangeLog
compat.c

index d3e3520309325f5bf0a2526df8365f4f820d1e43..18339c47c41e797ec08e1f3191185c8f819f957b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,9 @@
    - markus@cvs.openbsd.org 2000/12/09 14:06:54 
      [ssh-agent.c]
      extern int optind; from stevesk@sweden.hp.com
+   - provos@cvs.openbsd.org 2000/12/09 23:51:11
+     [compat.c]
+     remove unnecessary '\n'
 
 20001209
  - (bal) OpenBSD CVS updates:
index 291cfc7434f188f2fa5fe521bfd82b0b13f1da5e..c2574b2ed2f6ae2d757a2acd1de0699cb1f93db6 100644 (file)
--- a/compat.c
+++ b/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"
@@ -92,7 +92,7 @@ compat_datafellows(const char *version)
                ret = regexec(&reg, version, 0, NULL, 0);
                regfree(&reg);
                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;
                }
This page took 0.065972 seconds and 5 git commands to generate.