- stevesk@cvs.openbsd.org 2006/01/01 10:08:48
[misc.c] no trailing "\n" for debug()
This commit is contained in:
parent
3beb852e09
commit
a210d52235
|
@ -17,6 +17,9 @@
|
|||
- stevesk@cvs.openbsd.org 2006/01/01 08:59:27
|
||||
[includes.h misc.c]
|
||||
move <net/if.h>; ok djm@
|
||||
- stevesk@cvs.openbsd.org 2006/01/01 10:08:48
|
||||
[misc.c]
|
||||
no trailing "\n" for debug()
|
||||
|
||||
20060101
|
||||
- (djm) [Makefile.in configure.ac includes.h misc.c]
|
||||
|
@ -3607,4 +3610,4 @@
|
|||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.4067 2006/01/02 12:40:10 djm Exp $
|
||||
$Id: ChangeLog,v 1.4068 2006/01/02 12:40:30 djm Exp $
|
||||
|
|
4
misc.c
4
misc.c
|
@ -24,7 +24,7 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: misc.c,v 1.38 2006/01/01 08:59:27 stevesk Exp $");
|
||||
RCSID("$OpenBSD: misc.c,v 1.39 2006/01/01 10:08:48 stevesk Exp $");
|
||||
|
||||
#ifdef SSH_TUN_OPENBSD
|
||||
#include <net/if.h>
|
||||
|
@ -563,7 +563,7 @@ tun_open(int tun, int mode)
|
|||
break;
|
||||
}
|
||||
} else {
|
||||
debug("%s: invalid tunnel %u\n", __func__, tun);
|
||||
debug("%s: invalid tunnel %u", __func__, tun);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue