summaryrefslogtreecommitdiffstats
path: root/avahi-core/iface-pfroute.c
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2005-10-18 18:36:01 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2005-10-18 18:36:01 +0000
commit8b22b43669d936ab75914732209f93a0b7ee81f4 (patch)
treed2a7997558ab9375db567beb98403dc3a3011faf /avahi-core/iface-pfroute.c
parentce83bca3f41d08539aca48afa138644bfadda521 (diff)
* modified autogen.sh to better support bsd
* added some info for autogen.sh on bsd in the script * cleaned some avahi_log git-svn-id: file:///home/lennart/svn/public/avahi/trunk@810 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core/iface-pfroute.c')
-rw-r--r--avahi-core/iface-pfroute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/avahi-core/iface-pfroute.c b/avahi-core/iface-pfroute.c
index e05b226..17b80d4 100644
--- a/avahi-core/iface-pfroute.c
+++ b/avahi-core/iface-pfroute.c
@@ -189,7 +189,7 @@ static void parse_rtmsg(struct rt_msghdr *rtm, int msglen, AvahiInterfaceMonitor
assert(rtm);
if (rtm->rtm_version != RTM_VERSION) {
- avahi_log_warn("routing message version %d not understood\n",
+ avahi_log_warn("routing message version %d not understood",
rtm->rtm_version);
return;
}
@@ -227,7 +227,7 @@ static void socket_event(AvahiWatch *w, int fd, AvahiWatchEvent event,void *user
return;
}
- avahi_log_debug("\ngot message of size %d on %s", (int)bytes, ctime(&now));
+ avahi_log_debug("socket_event: got message of size %d on %s", (int)bytes, ctime(&now));
parse_rtmsg((struct rt_msghdr *)msg, bytes ,m);
}
while (bytes > 0);