diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | packet.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -92,6 +92,9 @@ | |||
92 | save the session id (hash) for ssh2 (it will be passed with the | 92 | save the session id (hash) for ssh2 (it will be passed with the |
93 | initial sign request) and verify that this value is used during | 93 | initial sign request) and verify that this value is used during |
94 | authentication; ok provos@ | 94 | authentication; ok provos@ |
95 | - markus@cvs.openbsd.org 2002/06/04 23:02:06 | ||
96 | [packet.c] | ||
97 | remove __FUNCTION__ | ||
95 | 98 | ||
96 | 20020604 | 99 | 20020604 |
97 | - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed | 100 | - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed |
@@ -776,4 +779,4 @@ | |||
776 | - (stevesk) entropy.c: typo in debug message | 779 | - (stevesk) entropy.c: typo in debug message |
777 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 780 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
778 | 781 | ||
779 | $Id: ChangeLog,v 1.2168 2002/06/06 20:58:19 mouring Exp $ | 782 | $Id: ChangeLog,v 1.2169 2002/06/06 20:59:25 mouring Exp $ |
@@ -37,7 +37,7 @@ | |||
37 | */ | 37 | */ |
38 | 38 | ||
39 | #include "includes.h" | 39 | #include "includes.h" |
40 | RCSID("$OpenBSD: packet.c,v 1.93 2002/03/24 16:01:13 markus Exp $"); | 40 | RCSID("$OpenBSD: packet.c,v 1.94 2002/06/04 23:02:06 markus Exp $"); |
41 | 41 | ||
42 | #include "xmalloc.h" | 42 | #include "xmalloc.h" |
43 | #include "buffer.h" | 43 | #include "buffer.h" |
@@ -263,7 +263,7 @@ packet_set_seqnr(int mode, u_int32_t seqnr) | |||
263 | else if (mode == MODE_OUT) | 263 | else if (mode == MODE_OUT) |
264 | send_seqnr = seqnr; | 264 | send_seqnr = seqnr; |
265 | else | 265 | else |
266 | fatal("%s: bad mode %d", __FUNCTION__, mode); | 266 | fatal("packet_set_seqnr: bad mode %d", mode); |
267 | } | 267 | } |
268 | 268 | ||
269 | /* returns 1 if connection is via ipv4 */ | 269 | /* returns 1 if connection is via ipv4 */ |