]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
%zd -> %d
authorAlan T. DeKok <aland@freeradius.org>
Tue, 16 Feb 2016 21:08:23 +0000 (16:08 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 16 Feb 2016 21:08:23 +0000 (16:08 -0500)
src/main/listen.c

index 7d27cc3a646e0afcf7b4ae61d02b05aa52d15c30..9509ae08364c2eda6a8105ce72c5229a746a5acd 100644 (file)
@@ -1323,7 +1323,7 @@ static int auth_socket_send(rad_listen_t *listener, REQUEST *request)
        }
 
        if (request->reply->data_len > (MAX_PACKET_LEN - 100)) {
-               RWARN("Packet is large, and possibly truncated - %zd vs max %zd",
+               RWARN("Packet is large, and possibly truncated - %zd vs max %d",
                      request->reply->data_len, MAX_PACKET_LEN);
        }
 
@@ -1368,7 +1368,7 @@ static int acct_socket_send(rad_listen_t *listener, REQUEST *request)
        }
 
        if (request->reply->data_len > (MAX_PACKET_LEN - 100)) {
-               RWARN("Packet is large, and possibly truncated - %zd vs max %zd",
+               RWARN("Packet is large, and possibly truncated - %zd vs max %d",
                      request->reply->data_len, MAX_PACKET_LEN);
        }
 
@@ -1395,7 +1395,7 @@ static int proxy_socket_send(rad_listen_t *listener, REQUEST *request)
        }
 
        if (request->proxy->data_len > (MAX_PACKET_LEN - 100)) {
-               RWARN("Packet is large, and possibly truncated - %zd vs max %zd",
+               RWARN("Packet is large, and possibly truncated - %zd vs max %d",
                      request->proxy->data_len, MAX_PACKET_LEN);
        }
 
@@ -2111,7 +2111,7 @@ static int client_socket_encode(UNUSED rad_listen_t *listener, REQUEST *request)
        }
 
        if (request->reply->data_len > (MAX_PACKET_LEN - 100)) {
-               RWARN("Packet is large, and possibly truncated - %zd vs max %zd",
+               RWARN("Packet is large, and possibly truncated - %zd vs max %d",
                      request->reply->data_len, MAX_PACKET_LEN);
        }
 
@@ -2170,7 +2170,7 @@ static int proxy_socket_encode(UNUSED rad_listen_t *listener, REQUEST *request)
        }
 
        if (request->proxy->data_len > (MAX_PACKET_LEN - 100)) {
-               RWARN("Packet is large, and possibly truncated - %zd vs max %zd",
+               RWARN("Packet is large, and possibly truncated - %zd vs max %d",
                      request->proxy->data_len, MAX_PACKET_LEN);
        }