Eliminated the obsolete function osrf_message_free(), which is now
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 7 Jan 2009 17:20:59 +0000 (17:20 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 7 Jan 2009 17:20:59 +0000 (17:20 +0000)
completely replaced by the equivalent osrfMessageFree().

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1575 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/osrf_message.h
src/libopensrf/osrf_message.c

index 609e034..66cbc25 100644 (file)
@@ -106,7 +106,6 @@ void osrf_message_set_status_info( osrfMessage*,
                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*);
 
index c9e85c4..d853c9e 100644 (file)
@@ -106,10 +106,6 @@ void osrf_message_set_result_content( osrfMessage* msg, const char* json_string
 
 
 void osrfMessageFree( osrfMessage* msg ) {
-       osrf_message_free( msg );
-}
-
-void osrf_message_free( osrfMessage* msg ) {
        if( msg == NULL )
                return;