Print size_t with %zu.
authortobhe <tobhe@openbsd.org>
Tue, 6 Dec 2022 09:07:33 +0000 (09:07 +0000)
committertobhe <tobhe@openbsd.org>
Tue, 6 Dec 2022 09:07:33 +0000 (09:07 +0000)
ok patrick@

sbin/iked/ikev2.c
sbin/iked/ikev2_msg.c
sbin/iked/ikev2_pld.c

index 987918e..9579b8a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ikev2.c,v 1.360 2022/12/03 21:02:27 tobhe Exp $       */
+/*     $OpenBSD: ikev2.c,v 1.361 2022/12/06 09:07:33 tobhe Exp $       */
 
 /*
  * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de>
@@ -664,7 +664,7 @@ ikev2_recv(struct iked *env, struct iked_message *msg)
 
        logit(hdr->ike_exchange == IKEV2_EXCHANGE_INFORMATIONAL ?
            LOG_DEBUG : LOG_INFO,
-           "%srecv %s %s %u peer %s local %s, %ld bytes, policy '%s'",
+           "%srecv %s %s %u peer %s local %s, %zu bytes, policy '%s'",
            SPI_IH(hdr),
            print_map(hdr->ike_exchange, ikev2_exchange_map),
            msg->msg_response ? "res" : "req",
index 09089dc..aa98c78 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ikev2_msg.c,v 1.89 2022/12/03 21:02:27 tobhe Exp $    */
+/*     $OpenBSD: ikev2_msg.c,v 1.90 2022/12/06 09:07:33 tobhe Exp $    */
 
 /*
  * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de>
@@ -280,7 +280,7 @@ ikev2_msg_send(struct iked *env, struct iked_message *msg)
        exchange = hdr->ike_exchange;
        flags = hdr->ike_flags;
        logit(exchange == IKEV2_EXCHANGE_INFORMATIONAL ?  LOG_DEBUG : LOG_INFO,
-           "%ssend %s %s %u peer %s local %s, %ld bytes%s",
+           "%ssend %s %s %u peer %s local %s, %zu bytes%s",
            SPI_IH(hdr),
            print_map(exchange, ikev2_exchange_map),
            (flags & IKEV2_FLAG_RESPONSE) ? "res" : "req",
index b12df4b..8a851d0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ikev2_pld.c,v 1.126 2022/12/03 21:02:27 tobhe Exp $   */
+/*     $OpenBSD: ikev2_pld.c,v 1.127 2022/12/06 09:07:33 tobhe Exp $   */
 
 /*
  * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de>
@@ -320,7 +320,7 @@ ikev2_validate_sa(struct iked_message *msg, size_t offset, size_t left,
         */
        if (!sap->sap_more && left != sap_length) {
                log_debug("%s: malformed payload: SA payload length mismatches "
-                   "single proposal substructure length (%lu != %zu)",
+                   "single proposal substructure length (%zu != %zu)",
                    __func__, left, sap_length);
                return (-1);
        }