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:
parent
fa1b3d0842
commit
971c97317f
|
@ -12,6 +12,9 @@
|
||||||
- markus@cvs.openbsd.org 2000/12/09 14:06:54
|
- markus@cvs.openbsd.org 2000/12/09 14:06:54
|
||||||
[ssh-agent.c]
|
[ssh-agent.c]
|
||||||
extern int optind; from stevesk@sweden.hp.com
|
extern int optind; from stevesk@sweden.hp.com
|
||||||
|
- provos@cvs.openbsd.org 2000/12/09 23:51:11
|
||||||
|
[compat.c]
|
||||||
|
remove unnecessary '\n'
|
||||||
|
|
||||||
20001209
|
20001209
|
||||||
- (bal) OpenBSD CVS updates:
|
- (bal) OpenBSD CVS updates:
|
||||||
|
|
4
compat.c
4
compat.c
|
@ -23,7 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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 "ssh.h"
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
|
@ -92,7 +92,7 @@ compat_datafellows(const char *version)
|
||||||
ret = regexec(®, version, 0, NULL, 0);
|
ret = regexec(®, version, 0, NULL, 0);
|
||||||
regfree(®);
|
regfree(®);
|
||||||
if (ret == 0) {
|
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;
|
datafellows = check[i].bugs;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue