[packet.c]
     remove __FUNCTION__
This commit is contained in:
Ben Lindstrom 2002-06-06 20:59:25 +00:00
parent f67e07711f
commit 3dca4f55f2
2 changed files with 6 additions and 3 deletions

View File

@ -92,6 +92,9 @@
save the session id (hash) for ssh2 (it will be passed with the
initial sign request) and verify that this value is used during
authentication; ok provos@
- markus@cvs.openbsd.org 2002/06/04 23:02:06
[packet.c]
remove __FUNCTION__
20020604
- (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
@ -776,4 +779,4 @@
- (stevesk) entropy.c: typo in debug message
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
$Id: ChangeLog,v 1.2168 2002/06/06 20:58:19 mouring Exp $
$Id: ChangeLog,v 1.2169 2002/06/06 20:59:25 mouring Exp $

View File

@ -37,7 +37,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: packet.c,v 1.93 2002/03/24 16:01:13 markus Exp $");
RCSID("$OpenBSD: packet.c,v 1.94 2002/06/04 23:02:06 markus Exp $");
#include "xmalloc.h"
#include "buffer.h"
@ -263,7 +263,7 @@ packet_set_seqnr(int mode, u_int32_t seqnr)
else if (mode == MODE_OUT)
send_seqnr = seqnr;
else
fatal("%s: bad mode %d", __FUNCTION__, mode);
fatal("packet_set_seqnr: bad mode %d", mode);
}
/* returns 1 if connection is via ipv4 */