Changeset 7e67487 in mod_gnutls
- Timestamp:
- Jun 30, 2009, 1:12:19 PM (14 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
- Children:
- f7a7d66
- Parents:
- 0e13d67
- git-author:
- Nikos Mavrogiannopoulos <nmav@…> (06/30/09 13:12:19)
- git-committer:
- Nokis Mavrogiannopoulos <nmav@…> (06/30/09 13:12:19)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r0e13d67 r7e67487 53 53 /* Recent Versions of 2.1 renamed several hooks. This allows us to 54 54 compile on 2.0.xx */ 55 #if AP_SERVER_MINORVERSION_NUMBER >= 1 56 #if AP_SERVER_PATCHLEVEL_NUMBER >= 3 55 #if AP_SERVER_MINORVERSION_NUMBER >= 2 || (AP_SERVER_MINORVERSION_NUMBER == 1 && AP_SERVER_PATCHLEVEL_NUMBER >= 3) 57 56 #define USING_2_1_RECENT 1 58 #endif59 57 #endif 60 58 -
src/gnutls_cache.c
r0e13d67 r7e67487 38 38 #define MC_TAG_LEN sizeof(MC_TAG) 39 39 #define STR_SESSION_LEN (GNUTLS_SESSION_ID_STRING_LEN + MC_TAG_LEN) 40 41 #if MODULE_MAGIC_NUMBER_MAJOR < 20081201 42 #define ap_unixd_config unixd_config 43 #endif 40 44 41 45 char *mgs_session_id2sz(unsigned char *id, int idlen, … … 545 549 /* Running as Root */ 546 550 if (geteuid() == 0) { 547 chown(path1, unixd_config.user_id, -1);551 chown(path1, ap_unixd_config.user_id, -1); 548 552 if (path2 != NULL) { 549 chown(path2, unixd_config.user_id, -1);553 chown(path2, ap_unixd_config.user_id, -1); 550 554 } 551 555 }
Note: See TracChangeset
for help on using the changeset viewer.