From 79d59305dc6b7a7b1185575f8e825b07727b3bf0 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 29 Jun 2014 01:15:48 +0000 Subject: [PATCH] Release 1.33.13 git-svn-id: http://svn.code.sf.net/p/xmlrpc-c/code@2612 98333e67-4a24-44d7-a75c-e53540dd3050 --- include/xmlrpc-c/abyss.h | 7 +++++++ lib/abyss/src/http.c | 3 +-- lib/abyss/src/http.h | 6 ------ version.mk | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/include/xmlrpc-c/abyss.h b/include/xmlrpc-c/abyss.h index 27afa3b..6a02543 100644 --- a/include/xmlrpc-c/abyss.h +++ b/include/xmlrpc-c/abyss.h @@ -461,6 +461,13 @@ char * RequestHeaderValue(TSession * const sessionP, const char * const name); +XMLRPC_ABYSS_EXPORTED +abyss_bool +RequestAuth(TSession * const sessionP, + const char * const credential, + const char * const user, + const char * const pass); + XMLRPC_ABYSS_EXPORTED abyss_bool ResponseAddField(TSession * const sessionP, diff --git a/lib/abyss/src/http.c b/lib/abyss/src/http.c index 79f28bf..19df681 100644 --- a/lib/abyss/src/http.c +++ b/lib/abyss/src/http.c @@ -1233,7 +1233,7 @@ RequestValidURIPath(TSession * const sessionP) { -bool +abyss_bool RequestAuth(TSession * const sessionP, const char * const credential, const char * const user, @@ -1258,7 +1258,6 @@ RequestAuth(TSession * const sessionP, const char * authType; NextToken((const char **)&authHdrPtr); GetTokenConst(&authHdrPtr, &authType); - authType = GetToken(&authHdrPtr); if (authType) { if (xmlrpc_strcaseeq(authType, "basic")) { const char * userPass; diff --git a/lib/abyss/src/http.h b/lib/abyss/src/http.h index 14a3168..3883a8a 100644 --- a/lib/abyss/src/http.h +++ b/lib/abyss/src/http.h @@ -23,12 +23,6 @@ RequestRead(TSession * const sessionP, void RequestInit(TSession * const r,TConn * const c); void RequestFree(TSession * const r); -bool -RequestAuth(TSession * const sessionP, - const char * const credential, - const char * const user, - const char * const pass); - /********************************************************************* ** HTTP *********************************************************************/ diff --git a/version.mk b/version.mk index 7596ab0..b863f39 100644 --- a/version.mk +++ b/version.mk @@ -8,4 +8,4 @@ ############################################################################### XMLRPC_MAJOR_RELEASE = 1 XMLRPC_MINOR_RELEASE = 33 -XMLRPC_POINT_RELEASE = 12 +XMLRPC_POINT_RELEASE = 13