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

src/libopensrf/osrf_app_session.c

index 8a8d12a..2662822 100644 (file)
@@ -217,7 +217,7 @@ osrfAppSession* osrf_app_client_session_init( const char* remote_service ) {
 
        osrfAppSession* session = safe_malloc(sizeof(osrfAppSession));
 
-       session->transport_handle = osrf_system_get_transport_client();
+       session->transport_handle = osrfSystemGetTransportClient();
        if( session->transport_handle == NULL ) {
                osrfLogWarning( OSRF_LOG_MARK, "No transport client for service 'client'");
                free( session );
@@ -306,7 +306,7 @@ osrfAppSession* osrf_app_server_session_init(
 
        session = safe_malloc(sizeof(osrfAppSession));
 
-       session->transport_handle = osrf_system_get_transport_client();
+       session->transport_handle = osrfSystemGetTransportClient();
        if( session->transport_handle == NULL ) {
                osrfLogWarning( OSRF_LOG_MARK, "No transport client for service '%s'", our_app );
                return NULL;