X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=src%2Fodhcp6c.c;h=7c4904030e9f875ea994103f564e0f586bb2d102;hb=4be3f666fde73be0d7046fac1ab8075aa5b1e8db;hp=9126986ca7a2ed4b53ca5dc107e9ad7772ddd865;hpb=0b77e6065dc833da19ddff6e04e4f09c805c6883;p=odhcp6c.git 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;