summaryrefslogtreecommitdiffstats
path: root/avahi-compat-libdns_sd
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-10-15 02:20:48 +0000
committerLennart Poettering <lennart@poettering.net>2005-10-15 02:20:48 +0000
commit2d6a80b9c57b32e5202c91b2239374555a098997 (patch)
tree32a8c88bb87c81ab63c3edcf068fa7cfeaea38f3 /avahi-compat-libdns_sd
parent786a6a7fa3840d06e64f7429e134ddb06cc1dedd (diff)
improve incompatibility warnings
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@764 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-compat-libdns_sd')
-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 4cd20e6..1bdafd0 100644
--- a/avahi-compat-libdns_sd/warn.c
+++ b/avahi-compat-libdns_sd/warn.c
@@ -95,7 +95,7 @@ void avahi_warn_linkage(void) {
get_exe_name(exename, sizeof(exename));
- warning(exename, "*** WARNING: The application '%s' uses the "COMPAT_LAYER" compatiblity layer of Avahi. Please fix it to use the native API! ***\n", exename);
+ warning(exename, "*** WARNING: The application '%s' uses the "COMPAT_LAYER" compatiblity layer of Avahi. Please fix your application to use the native API of Avahi! ***\n", exename);
}
}
@@ -103,7 +103,7 @@ void avahi_warn_unsupported(const char *function) {
char exename[256];
get_exe_name(exename, sizeof(exename));
- warning(exename, "*** WARNING: The application '%s' called '%s()' which is not supported (or only supported partially) in the "COMPAT_LAYER" compatiblity layer of Avahi. Please fix it to use the native API! ***\n", exename, function);
+ warning(exename, "*** WARNING: The application '%s' called '%s()' which is not supported (or only supported partially) in the "COMPAT_LAYER" compatiblity layer of Avahi. Please fix your application to use the native API of Avahi! ***\n", exename, function);
}