diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-27 13:54:55 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-27 13:54:55 +0100 |
commit | 68e45de53b72087a77069a61c4e789e2012cd706 (patch) | |
tree | b65e919ad35f4b6b8ba1119a1506ed42dc8eb352 /packet.h | |
parent | *** empty log message *** (diff) | |
download | openssh-68e45de53b72087a77069a61c4e789e2012cd706.tar.xz openssh-68e45de53b72087a77069a61c4e789e2012cd706.zip |
- OpenBSD CVS updates:
- [packet.h auth-rhosts.c]
check format string for packet_disconnect and packet_send_debug, too
- [channels.c]
use packet_get_maxsize for channels. consistence.
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -13,7 +13,7 @@ * */ -/* RCSID("$Id: packet.h,v 1.7 1999/11/25 00:54:59 damien Exp $"); */ +/* RCSID("$Id: packet.h,v 1.8 1999/12/27 12:54:55 damien Exp $"); */ #ifndef PACKET_H #define PACKET_H @@ -151,7 +151,7 @@ char *packet_get_string(unsigned int *length_ptr); * The error message should not contain a newline. The total length of the * message must not exceed 1024 bytes. */ -void packet_disconnect(const char *fmt,...); +void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));; /* * Sends a diagnostic message to the other side. This message can be sent at @@ -163,7 +163,7 @@ void packet_disconnect(const char *fmt,...); * remote side protocol flags do not indicate that it supports SSH_MSG_DEBUG, * this will do nothing. */ -void packet_send_debug(const char *fmt,...); +void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));; /* Checks if there is any buffered output, and tries to write some of the output. */ void packet_write_poll(void); |