Changeset d26fa55 in mod_gnutls
- Timestamp:
- Oct 21, 2016, 1:47:12 AM (6 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, master, proxy-ticket, upstream
- Children:
- c6dda6d
- Parents:
- 3f0b470
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_config.c
r3f0b470 rd26fa55 852 852 const char *arg) 853 853 { 854 const char *err;855 if ((err = ap_check_cmd_context(parms, GLOBAL_ONLY)))856 return err;857 858 854 apr_int64_t argint = apr_atoi64(arg); 859 855 if (argint < 0) … … 865 861 866 862 if (!apr_strnatcasecmp(parms->directive->directive, "GnuTLSCacheTimeout")) 863 { 864 const char *err; 865 if ((err = ap_check_cmd_context(parms, GLOBAL_ONLY))) 866 return err; 867 867 sc->cache_timeout = apr_time_from_sec(argint); 868 } 868 869 else if (!apr_strnatcasecmp(parms->directive->directive, 869 870 "GnuTLSOCSPGraceTime"))
Note: See TracChangeset
for help on using the changeset viewer.