odhcp6c: Replace strerror(errno) with %m
authorRosen Penev <rosenp@gmail.com>
Mon, 25 Dec 2017 23:05:13 +0000 (15:05 -0800)
committerHans Dedecker <hans.dedecker@technicolor.com>
Tue, 2 Jan 2018 15:20:15 +0000 (16:20 +0100)
Reduction of 48 bytes in compiled size. No functional difference.

-pedantic was removed as %m is a GNU extension.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
CMakeLists.txt
src/dhcpv6.c
src/odhcp6c.c

index a5b0cb397e0965550fb5710b62165e06c3a598db..c80c32a9a29d240736b69a40bad84f63b5c1dbcb 100644 (file)
@@ -5,7 +5,7 @@ cmake_policy(SET CMP0015 NEW)
 project(odhcp6c C)
 set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -std=c99")
-add_definitions(-D_GNU_SOURCE -Wall -Werror -Wextra -pedantic)
+add_definitions(-D_GNU_SOURCE -Wall -Werror -Wextra)
 
 if(${EXT_PREFIX_CLASS})
        add_definitions(-DEXT_PREFIX_CLASS=${EXT_PREFIX_CLASS})
index 9dce577250400b29a0dde12841d6b7ea0ba90882..0944dd205aae7e6482ae0d6bd7d647e94151823a 100644 (file)
@@ -522,9 +522,9 @@ static void dhcpv6_send(enum dhcpv6_msg type, uint8_t trid[3], uint32_t ecs)
        if (sendmsg(sock, &msg, 0) < 0) {
                char in6_str[INET6_ADDRSTRLEN];
 
-               syslog(LOG_ERR, "Failed to send DHCPV6 message to %s (%s)",
+               syslog(LOG_ERR, "Failed to send DHCPV6 message to %s (%m)",
                        inet_ntop(AF_INET6, (const void *)&srv.sin6_addr,
-                               in6_str, sizeof(in6_str)), strerror(errno));
+                               in6_str, sizeof(in6_str)));
        }
 }
 
index 666af5c398493f07f97d6d775bbd65755c869171..a14c22ef0dd1dffcf3d2f2f282d1b9ee005e64f9 100644 (file)
@@ -255,15 +255,14 @@ int main(_unused int argc, char* const argv[])
                        init_dhcpv6(ifname, client_options, sol_timeout) ||
                        ra_init(ifname, &ifid, ra_options, ra_holdoff_interval) ||
                        script_init(script, ifname)) {
-               syslog(LOG_ERR, "failed to initialize: %s", strerror(errno));
+               syslog(LOG_ERR, "failed to initialize: %m");
                return 3;
        }
 
        if (daemonize) {
                openlog("odhcp6c", LOG_PID, LOG_DAEMON); // Disable LOG_PERROR
                if (daemon(0, 0)) {
-                       syslog(LOG_ERR, "Failed to daemonize: %s",
-                                       strerror(errno));
+                       syslog(LOG_ERR, "Failed to daemonize: %m");
                        return 4;
                }