libctrl: Remove reference to 'DNAT' in favor of 'DCTRL'

This commit is contained in:
Harald Welte 2014-08-20 19:28:05 +02:00
parent dda4225153
commit e1a502b0df
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ static int listen_fd_cb(struct osmo_fd *listen_bfd, unsigned int what)
on = 1;
ret = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
if (ret != 0) {
LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
LOGP(DCTRL, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
close(fd);
return ret;
}