Fix some format-string warnings on x86_64.
authorAndre Noll <maan@systemlinux.org>
Mon, 6 Jul 2009 09:08:28 +0000 (11:08 +0200)
committerAndre Noll <maan@systemlinux.org>
Mon, 6 Jul 2009 09:08:28 +0000 (11:08 +0200)
command.c

index 90c4b60846c5c6cade80316f57bef742fdc7e716..a9eb03f17e32e35d361baa68db1f532872b35be6 100644 (file)
--- a/command.c
+++ b/command.c
@@ -777,7 +777,7 @@ __noreturn void handle_connect(int fd, const char *peername)
                numbytes = 256;
                get_random_bytes_or_die((unsigned char *)buf, numbytes);
        }
-       PARA_DEBUG_LOG("sending %zu byte challenge + rc4 keys (%u bytes)\n",
+       PARA_DEBUG_LOG("sending %u byte challenge + rc4 keys (%zu bytes)\n",
                CHALLENGE_SIZE, numbytes);
        ret = send_bin_buffer(fd, buf, numbytes);
        if (ret < 0)
@@ -787,7 +787,7 @@ __noreturn void handle_connect(int fd, const char *peername)
        if (ret < 0)
                goto net_err;
        numbytes = ret;
-       PARA_DEBUG_LOG("received %zu bytes challenge response\n", ret);
+       PARA_DEBUG_LOG("received %d bytes challenge response\n", ret);
        ret = -E_BAD_USER;
        if (!u)
                goto net_err;