]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Use standard format for printf messages
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 15 Jun 2017 18:06:54 +0000 (14:06 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 15 Jun 2017 18:06:54 +0000 (14:06 -0400)
src/lib/util/socket.c

index 891fe0c02b4ec514088d8bdfae9945b34de28c32..5eff209c2c0e7dc89a535c6d25a619d8bd39ea8a 100644 (file)
@@ -884,7 +884,7 @@ int fr_socket_bind(int sockfd, fr_ipaddr_t const *src_ipaddr, uint16_t *src_port
 
        rcode = bind(sockfd, (struct sockaddr *) &salocal, salen);
        if (rcode < 0) {
-               fr_strerror_printf("bind() failed; %s", fr_syserror(errno));
+               fr_strerror_printf("Bind failed: %s", fr_syserror(errno));
                return rcode;
        }