Author: minfrin Date: Fri Dec 2 18:32:37 2011 New Revision: 1209626 URL: http://svn.apache.org/viewvc?rev=1209626&view=rev Log: Backport: mod_auth_form: Use apr_status_t for the mod_session API. Modified: httpd/httpd/branches/2.4.x/ (props changed) httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_form.c Propchange: httpd/httpd/branches/2.4.x/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Dec 2 18:32:37 2011 @@ -1,3 +1,3 @@ /httpd/httpd/branches/revert-ap-ldap:1150158-1150173 /httpd/httpd/branches/wombat-integration:723609-723841 -/httpd/httpd/trunk:1201042,1201111,1201194,1201198,1201202,1202456,1202886,1203859,1204630,1204968,1204990,1205061,1205075,1205379,1205885,1206291,1206587,1207719,1208753,1208835,1209053,1209085,1209417,1209432,1209461,1209601,1209603,1209618 +/httpd/httpd/trunk:1201042,1201111,1201194,1201198,1201202,1202456,1202886,1203859,1204630,1204968,1204990,1205061,1205075,1205379,1205885,1206291,1206587,1207719,1208753,1208835,1209053,1209085,1209417,1209432,1209461,1209601,1209603,1209618,1209623 Modified: httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_form.c URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_form.c?rev=1209626&r1=1209625&r2=1209626&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_form.c (original) +++ httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_form.c Fri Dec 2 18:32:37 2011 @@ -41,10 +41,10 @@ #define MOD_AUTH_FORM_HASH "site" static int (*ap_session_load_fn) (request_rec * r, session_rec ** z) = NULL; -static void (*ap_session_get_fn) (request_rec * r, session_rec * z, - const char *key, const char **value) = NULL; -static void (*ap_session_set_fn) (request_rec * r, session_rec * z, - const char *key, const char *value) = NULL; +static apr_status_t (*ap_session_get_fn)(request_rec * r, session_rec * z, + const char *key, const char **value) = NULL; +static apr_status_t (*ap_session_set_fn)(request_rec * r, session_rec * z, + const char *key, const char *value) = NULL; static void (*ap_request_insert_filter_fn) (request_rec * r) = NULL; static void (*ap_request_remove_filter_fn) (request_rec * r) = NULL;