summaryrefslogtreecommitdiffstats
path: root/src/pulse/util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-08-07 02:24:19 +0200
committerLennart Poettering <lennart@poettering.net>2008-08-07 02:24:19 +0200
commit4e6fb67e9fc5c0342e3c92f4bcb9a9e16137dee1 (patch)
tree6dad46c656d1ef055959d0c477d6f98374ee01c7 /src/pulse/util.c
parent0075649f135a52d434f6e351c5cc34c75726dbc2 (diff)
don't spam to stderr in API functions
Diffstat (limited to 'src/pulse/util.c')
-rw-r--r--src/pulse/util.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/pulse/util.c b/src/pulse/util.c
index c0911b51..f785a2e9 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;
}