Another CVS sync w/ OpenBSD

- provos@cvs.openbsd.org 2000/12/09 23:51:11
     [compat.c]
     remove unnecessary '\n'
This commit is contained in:
Ben Lindstrom 2000-12-10 02:01:50 +00:00
parent fa1b3d0842
commit 971c97317f
2 changed files with 5 additions and 2 deletions

View File

@ -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:

View File

@ -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;
}