From: Lennart Poettering Date: Thu, 7 Aug 2008 00:24:19 +0000 (+0200) Subject: don't spam to stderr in API functions X-Git-Tag: submit/2.0-panda/20130828.192557~2553^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e6fb67e9fc5c0342e3c92f4bcb9a9e16137dee1;p=profile%2Fivi%2Fpulseaudio-panda.git don't spam to stderr in API functions --- diff --git a/src/pulse/util.c b/src/pulse/util.c index c0911b5..f785a2e 100644 --- a/src/pulse/util.c +++ b/src/pulse/util.c @@ -113,10 +113,8 @@ char *pa_get_host_name(char *s, size_t l) { pa_assert(s); pa_assert(l > 0); - if (gethostname(s, l) < 0) { - pa_log("gethostname(): %s", pa_cstrerror(errno)); + if (gethostname(s, l) < 0) return NULL; - } s[l-1] = 0; return s; @@ -142,12 +140,10 @@ char *pa_get_home_dir(char *s, size_t l) { #ifdef HAVE_PWD_H #ifdef HAVE_GETPWUID_R if (getpwuid_r(getuid(), &pw, buf, sizeof(buf), &r) != 0 || !r) { - pa_log("getpwuid_r() failed"); #else /* XXX Not thread-safe, but needed on OSes (e.g. FreeBSD 4.X) * that do not support getpwuid_r. */ if ((r = getpwuid(getuid())) == NULL) { - pa_log("getpwuid_r() failed"); #endif return NULL; }