summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-07-24 20:48:04 +0000
committerLennart Poettering <lennart@poettering.net>2007-07-24 20:48:04 +0000
commit99ce0a33041e5f368d08c59e6874af6e3ae6f22d (patch)
treedca773333ebb2a728e729c1b4cdf9c9cd3c0ca73
parent85b85902f68d51cd89b09f2789dbaf72c8d27f04 (diff)
Fix a couple of typos. Closes RHBZ #249306
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1500 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r--avahi-compat-libdns_sd/warn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/avahi-compat-libdns_sd/warn.c b/avahi-compat-libdns_sd/warn.c
index 13586ef..d3389c1 100644
--- a/avahi-compat-libdns_sd/warn.c
+++ b/avahi-compat-libdns_sd/warn.c
@@ -113,14 +113,14 @@ void avahi_warn_linkage(void) {
pthread_mutex_unlock(&linkage_mutex);
if (!w && !getenv("AVAHI_COMPAT_NOWARN")) {
- avahi_warn("The programme '%s' uses the "COMPAT_LAYER" compatiblity layer of Avahi.", avahi_exe_name());
+ avahi_warn("The program '%s' uses the "COMPAT_LAYER" compatibility layer of Avahi.", avahi_exe_name());
avahi_warn("Please fix your application to use the native API of Avahi!");
avahi_warn("For more information see <http://0pointer.de/avahi-compat?s="CGI_SUBSYSTEM"&e=%s>", avahi_exe_name());
}
}
void avahi_warn_unsupported(const char *function) {
- avahi_warn("The programme '%s' called '%s()' which is not supported (or only supported partially) in the "COMPAT_LAYER" compatiblity layer of Avahi.", avahi_exe_name(), function);
+ avahi_warn("The program '%s' called '%s()' which is not supported (or only supported partially) in the "COMPAT_LAYER" compatibility layer of Avahi.", avahi_exe_name(), function);
avahi_warn("Please fix your application to use the native API of Avahi!");
avahi_warn("For more information see <http://0pointer.de/avahi-compat?s="CGI_SUBSYSTEM"&e=%s&f=%s>", avahi_exe_name(), function);
}