eplace the OSRF_METHOD_VERIFY_CONTEXT macro with an
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 2 Feb 2009 13:39:08 +0000 (13:39 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 2 Feb 2009 13:39:08 +0000 (13:39 +0000)
2 equivalent call to the osrfMethodVerifyContext function.

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

src/c-apps/osrf_version.c

index dbe845b..d7748fe 100644 (file)
@@ -30,8 +30,10 @@ int osrfAppChildInit() {
 }
 
 int osrfVersion( osrfMethodContext* ctx ) {
-
-       OSRF_METHOD_VERIFY_CONTEXT(ctx); 
+       if( osrfMethodVerifyContext( ctx ) ) {
+               osrfLogError( OSRF_LOG_MARK,  "Invalid method context" );
+               return -1;
+       }
 
        /* First, see if the data is in the cache */
        char* json = jsonObjectToJSON(ctx->params);