X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-dnsconfd%2Fmain.c;h=b384a038e0df19196c76cf40a7d2f702afec1435;hb=5f50418bcedca75028597dfa6504e5be9a549c26;hp=84b0f6873cd076696c689ba85d504ecf57794084;hpb=16d9e30dd7fa052bd7e6dd37927d7f27bec90ef1;p=catta diff --git a/avahi-dnsconfd/main.c b/avahi-dnsconfd/main.c index 84b0f68..b384a03 100644 --- a/avahi-dnsconfd/main.c +++ b/avahi-dnsconfd/main.c @@ -23,11 +23,11 @@ #include #endif -#include #include #include #include #include +#include #include #include #include @@ -287,7 +287,7 @@ static int new_line(const char *l) { AvahiIfIndex interface; AvahiProtocol protocol; int i_interface, i_protocol, port; - char a[64]; + char a[AVAHI_ADDRESS_STR_MAX]; assert(state == BROWSING); @@ -296,7 +296,7 @@ static int new_line(const char *l) { return -1; } - if (sscanf(l+1, "%i %i %64s %i", &i_interface, &i_protocol, a, &port) != 4) { + if (sscanf(l+1, "%i %i %39s %i", &i_interface, &i_protocol, a, &port) != 4) { daemon_log(LOG_ERR, "Failed to parse browsing line: %s", l); return -1; } @@ -588,7 +588,7 @@ int main(int argc, char *argv[]) { /** Parent **/ if ((ret = daemon_retval_wait(20)) < 0) { - daemon_log(LOG_ERR, "Could not recieve return value from daemon process."); + daemon_log(LOG_ERR, "Could not receive return value from daemon process."); goto finish; }