X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fconf.c;h=725aab6ab19bfe550ce27eb8890e0992c03dc080;hb=7e3ae3251443f7093b63b25f3bdfb02aa2133bc9;hp=557e0f86b18fc9b9e096ecf50de741321a1055a7;hpb=a0a47e4deac74cae8426db35d19b6911ea3d8794;p=umurmur.git diff --git a/src/conf.c b/src/conf.c index 557e0f8..725aab6 100644 --- a/src/conf.c +++ b/src/conf.c @@ -252,7 +252,10 @@ int getIntConf(param_t param) case BINDPORT6: setting = config_lookup(&configuration, "bindport6"); if (!setting) - return DEFAULT_BINDPORT; + /* If bindport6 is not specified, we default + * to whatever bindport is, rather than always + * default to 64738 */ + return getIntConf(BINDPORT); else { return config_setting_get_int(setting); }