diff options
author | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
commit | 4d472c265ed0b3f7f61ee624c01c8ef319db7c99 (patch) | |
tree | 8ec3ea874c741c9b0e1ab70db2a96e02acec8225 /src/zeroconf.c | |
parent | 2bbf378dd8a3f12b4b79228ce562402c29d2cd09 (diff) | |
download | mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.gz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.xz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.zip |
conf: no CamelCase, part I
Renamed functions, types, variables.
Diffstat (limited to 'src/zeroconf.c')
-rw-r--r-- | src/zeroconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zeroconf.c b/src/zeroconf.c index dd9790ae3..f2945c4cc 100644 --- a/src/zeroconf.c +++ b/src/zeroconf.c @@ -35,7 +35,7 @@ static int zeroconfEnabled; void initZeroconf(void) { const char *serviceName = SERVICE_NAME; - ConfigParam *param; + struct config_param *param; zeroconfEnabled = getBoolConfigParam(CONF_ZEROCONF_ENABLED, 1); if (zeroconfEnabled == CONF_BOOL_UNSET) @@ -44,7 +44,7 @@ void initZeroconf(void) if (!zeroconfEnabled) return; - param = getConfigParam(CONF_ZEROCONF_NAME); + param = config_get_param(CONF_ZEROCONF_NAME); if (param && *param->value != 0) serviceName = param->value; |