[Opensrf-commits] r1576 - in trunk: include/opensrf src/libopensrf

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jan 7 12:34:04 EST 2009


Author: scottmk
Date: 2009-01-07 12:34:01 -0500 (Wed, 07 Jan 2009)
New Revision: 1576

Modified:
   trunk/include/opensrf/osrf_app_session.h
   trunk/src/libopensrf/osrf_app_session.c
Log:
Eliminate the old obsolete function osrf_app_session_connect(), which has
now been completely replaced by the equivalent osrfAppSessionConnect().



Modified: trunk/include/opensrf/osrf_app_session.h
===================================================================
--- trunk/include/opensrf/osrf_app_session.h	2009-01-07 17:20:59 UTC (rev 1575)
+++ trunk/include/opensrf/osrf_app_session.h	2009-01-07 17:34:01 UTC (rev 1576)
@@ -123,7 +123,6 @@
 /** Attempts to connect to the remote service. Returns 1 on successful 
   * connection, 0 otherwise.
   */
-int osrf_app_session_connect( osrfAppSession* );
 int osrfAppSessionConnect( osrfAppSession* );
 
 /** Sends a disconnect message to the remote service.  No response is expected */

Modified: trunk/src/libopensrf/osrf_app_session.c
===================================================================
--- trunk/src/libopensrf/osrf_app_session.c	2009-01-07 17:20:59 UTC (rev 1575)
+++ trunk/src/libopensrf/osrf_app_session.c	2009-01-07 17:34:01 UTC (rev 1576)
@@ -498,13 +498,8 @@
 	return 0;
 }
 
-int osrfAppSessionConnect( osrfAppSession* session ) { 
-	return osrf_app_session_connect(session);
-}
-
-
 /** Attempts to connect to the remote service */
-int osrf_app_session_connect(osrfAppSession* session){
+int osrfAppSessionConnect( osrfAppSession* session ) {
 	
 	if(session == NULL)
 		return 0;



More information about the opensrf-commits mailing list