summaryrefslogtreecommitdiff
path: root/src/odhcp6c.c
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2012-11-28 12:05:10 +0100
committerSteven Barth <steven@midlink.org>2012-11-28 12:05:10 +0100
commit4be3f666fde73be0d7046fac1ab8075aa5b1e8db (patch)
tree3cd9c2de202f90a409f778b063012a22369fec08 /src/odhcp6c.c
parentf383c982bc8dee2ffd4b447f2862a9c0f87fa582 (diff)
downloadodhcp6c-4be3f666fde73be0d7046fac1ab8075aa5b1e8db.tar.gz
Improve syslog-messages
Diffstat (limited to 'src/odhcp6c.c')
-rw-r--r--src/odhcp6c.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/odhcp6c.c b/src/odhcp6c.c
index 9126986..7c49040 100644
--- a/src/odhcp6c.c
+++ b/src/odhcp6c.c
@@ -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;