]> git.decadent.org.uk Git - odhcp6c.git/commitdiff
Improve syslog-messages
authorSteven Barth <steven@midlink.org>
Wed, 28 Nov 2012 11:05:10 +0000 (12:05 +0100)
committerSteven Barth <steven@midlink.org>
Wed, 28 Nov 2012 11:05:10 +0000 (12:05 +0100)
src/odhcp6c.c
src/script.c

index 9126986ca7a2ed4b53ca5dc107e9ad7772ddd865..7c4904030e9f875ea994103f564e0f586bb2d102 100644 (file)
@@ -328,7 +328,6 @@ static uint8_t* odhcp6c_resize_state(enum odhcp6c_state state, ssize_t len)
        if (len == 0)
                return state_data[state] + state_len[state];
 
-       syslog(LOG_WARNING, "state_reisze: %i %i %i", (int)state, (int)state_len[state], (int)len);
        uint8_t *n = realloc(state_data[state], state_len[state] + len);
        if (n || state_len[state] + len == 0) {
                state_data[state] = n;
index 2a34ea00191e62779d58a91aa5d7aa7cdd80b93b..ff81278bf59b6f3e1dd1082634f5086aed1da505 100644 (file)
@@ -16,6 +16,7 @@
 #include <resolv.h>
 #include <stdlib.h>
 #include <string.h>
+#include <syslog.h>
 #include <unistd.h>
 #include <arpa/inet.h>
 #include <netinet/in.h>
@@ -156,6 +157,7 @@ static void prefix_to_env(const char *name, const uint8_t *fqdn, size_t len)
 
 void script_call(const char *status)
 {
+       syslog(LOG_WARNING, "State for %s changed to %s", argv[1], status);
        size_t dns_len, search_len, custom_len;
        struct in6_addr *dns = odhcp6c_get_state(STATE_DNS, &dns_len);
        uint8_t *search = odhcp6c_get_state(STATE_SEARCH, &search_len);