]> andersk Git - openssh.git/commitdiff
- deraadt@cvs.openbsd.org 2002/07/01 16:15:25
authormouring <mouring>
Thu, 4 Jul 2002 00:15:22 +0000 (00:15 +0000)
committermouring <mouring>
Thu, 4 Jul 2002 00:15:22 +0000 (00:15 +0000)
     [msg.c]
     %u

ChangeLog
msg.c

index 0ee1e0dfc0ff3b9574604fd2584dee845ea3d63c..3ca8c8ff54781118f044d6e45447cb8f88cb466c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -38,6 +38,9 @@
       monitor_wrap.c monitor_wrap.h scard.h session.h sftp-glob.c ssh.c
       sshconnect2.c sshd.c]
      minor KNF
+   - deraadt@cvs.openbsd.org 2002/07/01 16:15:25
+     [msg.c]
+     %u
 
 20020702
  - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc & 
diff --git a/msg.c b/msg.c
index 7275c847dabb00ead9937ad7d101ae76994fdea2..de19b057f929362446a5808b22487f4037ca7470 100644 (file)
--- a/msg.c
+++ b/msg.c
@@ -22,7 +22,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 #include "includes.h"
-RCSID("$OpenBSD: msg.c,v 1.3 2002/06/24 15:49:22 itojun Exp $");
+RCSID("$OpenBSD: msg.c,v 1.4 2002/07/01 16:15:25 deraadt Exp $");
 
 #include "buffer.h"
 #include "getput.h"
@@ -63,7 +63,7 @@ msg_recv(int fd, Buffer *m)
        }
        msg_len = GET_32BIT(buf);
        if (msg_len > 256 * 1024)
-               fatal("msg_recv: read: bad msg_len %d", msg_len);
+               fatal("msg_recv: read: bad msg_len %u", msg_len);
        buffer_clear(m);
        buffer_append_space(m, msg_len);
        res = atomicio(read, fd, buffer_ptr(m), msg_len);
This page took 0.03261 seconds and 5 git commands to generate.