From: miker Date: Tue, 1 Jan 2008 01:41:31 +0000 (+0000) Subject: Patch from Scott McKellar; use camelCase instead of under_score function names X-Git-Tag: osrf_rel_2_0_1~775 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bf79b3be5c7ec09234fe060dff688418d572f989;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@1192 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/libopensrf/osrf_app_session.c b/src/libopensrf/osrf_app_session.c index 8a8d12a..2662822 100644 --- a/src/libopensrf/osrf_app_session.c +++ b/src/libopensrf/osrf_app_session.c @@ -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;