X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-compat-libdns_sd%2Fwarn.c;h=13586ef31fa60d317ce4b5395e47627d96ff0889;hb=fc3830c24fd0341d762a2c4f05198f27fc3ccac0;hp=72c101f337dd9b9ecd13a414e768af43caf8812c;hpb=ede7f75563fa76ab9b67048fc508a200326938ad;p=catta diff --git a/avahi-compat-libdns_sd/warn.c b/avahi-compat-libdns_sd/warn.c index 72c101f..13586ef 100644 --- a/avahi-compat-libdns_sd/warn.c +++ b/avahi-compat-libdns_sd/warn.c @@ -37,12 +37,19 @@ #ifndef COMPAT_LAYER #define COMPAT_LAYER "Apple Bonjour" -#endif +#endif + +#ifndef CGI_SUBSYSTEM +#define CGI_SUBSYSTEM "libdns_sd" +#endif static pthread_mutex_t linkage_mutex = PTHREAD_MUTEX_INITIALIZER; static int linkage_warning = 0; const char *avahi_exe_name(void) { +#ifdef HAVE_GETPROGNAME + return getprogname(); +#elif defined(__linux__) static char exe_name[1024] = ""; static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; @@ -53,11 +60,8 @@ const char *avahi_exe_name(void) { if (exe_name[0] == 0) { int k; - char fn[64]; - snprintf(fn, sizeof(fn), "/proc/%lu/exe", (unsigned long) getpid()); - - if ((k = readlink(fn, exe_name, sizeof(exe_name)-1)) < 0) + if ((k = readlink("/proc/self/exe", exe_name, sizeof(exe_name)-1)) < 0) snprintf(exe_name, sizeof(exe_name), "(unknown)"); else { char *slash; @@ -73,6 +77,12 @@ const char *avahi_exe_name(void) { pthread_mutex_unlock(&mutex); return exe_name; +#else +#ifdef __GNUC__ +#warning "avahi_exe_name() needs to be implemented for your operating system" +#endif + return "(unknown)"; +#endif } void avahi_warn(const char *fmt, ...) { @@ -102,17 +112,15 @@ void avahi_warn_linkage(void) { linkage_warning = 1; pthread_mutex_unlock(&linkage_mutex); - if (!w && !getenv("AVAHI_COMPAT_NOWARN")) - avahi_warn("The programme '%s' uses the "COMPAT_LAYER" compatiblity layer of Avahi. " - "Please fix your application to use the native API of Avahi!", - avahi_exe_name()); + if (!w && !getenv("AVAHI_COMPAT_NOWARN")) { + avahi_warn("The programme '%s' uses the "COMPAT_LAYER" compatiblity 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 ", 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. " - "Please fix your application to use the native API of Avahi!", - avahi_exe_name(), 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("Please fix your application to use the native API of Avahi!"); + avahi_warn("For more information see ", avahi_exe_name(), function); } - - -