- stevesk@cvs.openbsd.org 2001/05/03 15:07:39
[channels.c] typo in debug() string
This commit is contained in:
parent
8a1371347b
commit
2b45180b2e
|
@ -1,3 +1,9 @@
|
||||||
|
20010504
|
||||||
|
- OpenBSD CVS Sync
|
||||||
|
- stevesk@cvs.openbsd.org 2001/05/03 15:07:39
|
||||||
|
[channels.c]
|
||||||
|
typo in debug() string
|
||||||
|
|
||||||
20010503
|
20010503
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
- markus@cvs.openbsd.org 2001/05/02 16:41:20
|
- markus@cvs.openbsd.org 2001/05/02 16:41:20
|
||||||
|
@ -5308,4 +5314,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1190 2001/05/02 22:40:12 mouring Exp $
|
$Id: ChangeLog,v 1.1191 2001/05/03 22:35:32 mouring Exp $
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: channels.c,v 1.110 2001/04/29 19:16:52 markus Exp $");
|
RCSID("$OpenBSD: channels.c,v 1.111 2001/05/03 15:07:39 stevesk Exp $");
|
||||||
|
|
||||||
#include <openssl/rsa.h>
|
#include <openssl/rsa.h>
|
||||||
#include <openssl/dsa.h>
|
#include <openssl/dsa.h>
|
||||||
|
@ -848,7 +848,7 @@ channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
|
||||||
debug("getsockopt SO_ERROR failed");
|
debug("getsockopt SO_ERROR failed");
|
||||||
} else {
|
} else {
|
||||||
if (err == 0) {
|
if (err == 0) {
|
||||||
debug("channel %d: connected)", c->self);
|
debug("channel %d: connected", c->self);
|
||||||
} else {
|
} else {
|
||||||
debug("channel %d: not connected: %s",
|
debug("channel %d: not connected: %s",
|
||||||
c->self, strerror(err));
|
c->self, strerror(err));
|
||||||
|
|
Loading…
Reference in New Issue