summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-06-09 01:42:01 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-06-09 01:42:01 +0000
commit664408d2a794806722aa3f321b92c7bdd667c42e (patch)
tree0dbce8250bc4d6325ed2f2b6950221a24d62dc2a /packet.c
parent9d0c06667eb4ca616ffa690e88b9dd7c438e3103 (diff)
- markus@cvs.openbsd.org 2001/06/07 20:23:05
[authfd.c authfile.c channels.c kexdh.c kexgex.c packet.c ssh.c sshconnect.c sshconnect1.c] use xxx_put_cstring()
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet.c b/packet.c
index 402259a99..d3a43609b 100644
--- a/packet.c
+++ b/packet.c
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: packet.c,v 1.64 2001/05/31 10:30:16 markus Exp $"); 40RCSID("$OpenBSD: packet.c,v 1.65 2001/06/07 20:23:04 markus Exp $");
41 41
42#include "xmalloc.h" 42#include "xmalloc.h"
43#include "buffer.h" 43#include "buffer.h"
@@ -333,7 +333,7 @@ packet_put_string(const char *buf, u_int len)
333void 333void
334packet_put_cstring(const char *str) 334packet_put_cstring(const char *str)
335{ 335{
336 buffer_put_string(&outgoing_packet, str, strlen(str)); 336 buffer_put_cstring(&outgoing_packet, str);
337} 337}
338void 338void
339packet_put_raw(const char *buf, u_int len) 339packet_put_raw(const char *buf, u_int len)
@@ -1079,7 +1079,7 @@ packet_disconnect(const char *fmt,...)
1079 packet_put_cstring(""); 1079 packet_put_cstring("");
1080 } else { 1080 } else {
1081 packet_start(SSH_MSG_DISCONNECT); 1081 packet_start(SSH_MSG_DISCONNECT);
1082 packet_put_string(buf, strlen(buf)); 1082 packet_put_cstring(buf);
1083 } 1083 }
1084 packet_send(); 1084 packet_send();
1085 packet_write_wait(); 1085 packet_write_wait();