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

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jan 7 12:21:01 EST 2009


Author: scottmk
Date: 2009-01-07 12:20:59 -0500 (Wed, 07 Jan 2009)
New Revision: 1575

Modified:
   trunk/include/opensrf/osrf_message.h
   trunk/src/libopensrf/osrf_message.c
Log:
Eliminated the obsolete function osrf_message_free(), which is now
completely replaced by the equivalent osrfMessageFree().


Modified: trunk/include/opensrf/osrf_message.h
===================================================================
--- trunk/include/opensrf/osrf_message.h	2009-01-07 16:27:06 UTC (rev 1574)
+++ trunk/include/opensrf/osrf_message.h	2009-01-07 17:20:59 UTC (rev 1575)
@@ -106,7 +106,6 @@
 		const char* status_name, const char* status_text, int status_code );
 void osrf_message_set_result_content( osrfMessage*, const char* json_string );
 void osrfMessageFree( osrfMessage* );
-void osrf_message_free( osrfMessage* );
 char* osrf_message_to_xml( osrfMessage* );
 char* osrf_message_serialize(const osrfMessage*);
 

Modified: trunk/src/libopensrf/osrf_message.c
===================================================================
--- trunk/src/libopensrf/osrf_message.c	2009-01-07 16:27:06 UTC (rev 1574)
+++ trunk/src/libopensrf/osrf_message.c	2009-01-07 17:20:59 UTC (rev 1575)
@@ -106,10 +106,6 @@
 
 
 void osrfMessageFree( osrfMessage* msg ) {
-	osrf_message_free( msg );
-}
-
-void osrf_message_free( osrfMessage* msg ) {
 	if( msg == NULL )
 		return;
 



More information about the opensrf-commits mailing list