parent
1b26ab286f
commit
7c8af4fca8
|
@ -1,3 +1,8 @@
|
||||||
|
20000501
|
||||||
|
- OpenBSD CVS update
|
||||||
|
[packet.c]
|
||||||
|
- send debug messages in SSH2 format
|
||||||
|
|
||||||
20000430
|
20000430
|
||||||
- Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
|
- Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
|
||||||
- Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
|
- Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
|
||||||
|
|
13
packet.c
13
packet.c
|
@ -17,7 +17,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$Id: packet.c,v 1.19 2000/04/16 02:31:51 damien Exp $");
|
RCSID("$Id: packet.c,v 1.20 2000/04/30 22:24:07 damien Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
|
@ -1093,8 +1093,15 @@ packet_send_debug(const char *fmt,...)
|
||||||
vsnprintf(buf, sizeof(buf), fmt, args);
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
||||||
va_end(args);
|
va_end(args);
|
||||||
|
|
||||||
packet_start(SSH_MSG_DEBUG);
|
if (compat20) {
|
||||||
packet_put_string(buf, strlen(buf));
|
packet_start(SSH2_MSG_DEBUG);
|
||||||
|
packet_put_char(0); /* bool: always display */
|
||||||
|
packet_put_cstring(buf);
|
||||||
|
packet_put_cstring("");
|
||||||
|
} else {
|
||||||
|
packet_start(SSH_MSG_DEBUG);
|
||||||
|
packet_put_cstring(buf);
|
||||||
|
}
|
||||||
packet_send();
|
packet_send();
|
||||||
packet_write_wait();
|
packet_write_wait();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue