From 9be176f40312a38882e1db46645b136e69b2cad4 Mon Sep 17 00:00:00 2001 From: Deng Zhengrong Date: Fri, 25 May 2012 10:17:51 +0800 Subject: [PATCH] daemon: use pa_streq instead of plain strcmp Just noticed that in daemon-conf.c, it uses plain strcmp(), while in PulseAudio, it should be better to use pa_streq(). --- src/daemon/daemon-conf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/daemon/daemon-conf.c b/src/daemon/daemon-conf.c index 3ef7f812a..dd2e7b635 100644 --- a/src/daemon/daemon-conf.c +++ b/src/daemon/daemon-conf.c @@ -180,12 +180,12 @@ int pa_daemon_conf_set_log_target(pa_daemon_conf *c, const char *string) { pa_assert(c); pa_assert(string); - if (!strcmp(string, "auto")) + if (pa_streq(string, "auto")) c->auto_log_target = 1; - else if (!strcmp(string, "syslog")) { + else if (pa_streq(string, "syslog")) { c->auto_log_target = 0; c->log_target = PA_LOG_SYSLOG; - } else if (!strcmp(string, "stderr")) { + } else if (pa_streq(string, "stderr")) { c->auto_log_target = 0; c->log_target = PA_LOG_STDERR; } else if (pa_startswith(string, "file:")) { @@ -251,11 +251,11 @@ int pa_daemon_conf_set_local_server_type(pa_daemon_conf *c, const char *string) pa_assert(c); pa_assert(string); - if (!strcmp(string, "user")) + if (pa_streq(string, "user")) c->local_server_type = PA_SERVER_TYPE_USER; - else if (!strcmp(string, "system")) { + else if (pa_streq(string, "system")) { c->local_server_type = PA_SERVER_TYPE_SYSTEM; - } else if (!strcmp(string, "none")) { + } else if (pa_streq(string, "none")) { c->local_server_type = PA_SERVER_TYPE_NONE; } else return -1;