Patch from Scott McKellar; use camelCase instead of under_score function names
authormiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 1 Jan 2008 01:42:22 +0000 (01:42 +0000)
committermiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 1 Jan 2008 01:42:22 +0000 (01:42 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1193 9efc2488-bf62-4759-914b-345cdb29e865

src/libopensrf/osrf_prefork.c

index 4d4b996..17dc702 100644 (file)
@@ -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;