summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-03-02 01:22:55 +0000
committerLennart Poettering <lennart@poettering.net>2006-03-02 01:22:55 +0000
commitcc7cabaf6b1b8e67a7d1fc92c97ad708ec270859 (patch)
tree9cf88429adcbedabf9c6962bd7a834d41f57710c
parente8f2968724ef42874bef6b5e8d90104ae5086611 (diff)
use term "static host names" instead of "static hosts" in error messages
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1167 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r--avahi-daemon/static-hosts.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/avahi-daemon/static-hosts.c b/avahi-daemon/static-hosts.c
index 8e16d84..17b268b 100644
--- a/avahi-daemon/static-hosts.c
+++ b/avahi-daemon/static-hosts.c
@@ -66,11 +66,11 @@ static void entry_group_callback(AvahiServer *s, AVAHI_GCC_UNUSED AvahiSEntryGro
break;
case AVAHI_ENTRY_GROUP_ESTABLISHED:
- avahi_log_notice ("Static Host \"%s\" successfully established.", h->host);
+ avahi_log_notice ("Static host name \"%s\" successfully established.", h->host);
break;
case AVAHI_ENTRY_GROUP_FAILURE:
- avahi_log_notice ("Failed to establish Static Host \"%s\": %s.", h->host, avahi_strerror (avahi_server_errno (s)));
+ avahi_log_notice ("Failed to establish static host name \"%s\": %s.", h->host, avahi_strerror (avahi_server_errno (s)));
break;
case AVAHI_ENTRY_GROUP_UNCOMMITED:
@@ -115,12 +115,12 @@ static void add_static_host_to_server(StaticHost *h)
h->group = avahi_s_entry_group_new (avahi_server, entry_group_callback, h);
if (!avahi_address_parse (h->ip, AVAHI_PROTO_UNSPEC, &a)) {
- avahi_log_error("Static host %s: avahi_address_parse failed", h->host);
+ avahi_log_error("Static host name %s: avahi_address_parse failed", h->host);
return;
}
if ((err = avahi_server_add_address(avahi_server, h->group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, h->host, &a))) {
- avahi_log_error ("Static host %s: avahi_server_add_address failure: %s", h->host, avahi_strerror(err));
+ avahi_log_error ("Static host name %s: avahi_server_add_address failure: %s", h->host, avahi_strerror(err));
return;
}