From: miker Date: Tue, 1 Jan 2008 01:42:22 +0000 (+0000) Subject: Patch from Scott McKellar; use camelCase instead of under_score function names X-Git-Tag: osrf_rel_2_0_1~774 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7dd52486be03897162b4db1691fe4e6f2672e531;p=OpenSRF.git Patch from Scott McKellar; use camelCase instead of under_score function names git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1193 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/libopensrf/osrf_prefork.c b/src/libopensrf/osrf_prefork.c index 4d4b996..17dc702 100644 --- a/src/libopensrf/osrf_prefork.c +++ b/src/libopensrf/osrf_prefork.c @@ -58,7 +58,7 @@ int osrf_prefork_run(char* appname) { char* resc = va_list_to_string("%s_listener", appname); - if(!osrf_system_bootstrap_client_resc( NULL, NULL, resc )) { + if(!osrfSystemBootstrapClientResc( NULL, NULL, resc )) { osrfLogError( OSRF_LOG_MARK, "Unable to bootstrap client for osrf_prefork_run()"); free(resc); return -1; @@ -137,7 +137,7 @@ int prefork_child_init_hook(prefork_child* child) { * so we can have our own */ osrfSystemIgnoreTransportClient(); - if(!osrf_system_bootstrap_client_resc( NULL, NULL, resc)) { + if(!osrfSystemBootstrapClientResc( NULL, NULL, resc)) { osrfLogError( OSRF_LOG_MARK, "Unable to bootstrap client for osrf_prefork_run()"); free(resc); return -1;