On 23 Jun 2010, at 23:50, NormW wrote: > Greetings, > Some observations when compiling current httpd-trunk for NetWare following > recent updates:
Thanks :) > 3. modules\aaa\mod_authn_socache.c builds if this change is made: > >> --- mod_authn_socache.c.orig 2010-06-24 06:47:46.796875000 +1000 >> +++ mod_authn_socache.c 2010-06-24 07:11:34.546875000 +1000 >> @@ -301,11 +301,12 @@ >> * to no-longer-defined memory. Hmmm ... >> */ >> apr_status_t rv; >> + const char *key; >> unsigned char val[MAX_VAL_LEN]; >> unsigned int vallen = MAX_VAL_LEN - 1; >> authn_cache_dircfg *dcfg = ap_get_module_config(r->per_dir_config, >> &authn_socache_module); >> - const char *key = construct_key(r, dcfg->context, user, NULL); >> + key = construct_key(r, dcfg->context, user, NULL); >> rv = socache_provider->retrieve(socache_instance, r->server, >> (unsigned char*)key, strlen(key), >> val, &vallen, r->pool); Huh? Sounds like a bug in your compiler! What's the problem with the trunk code? > 4. modules\aaa\mod_authn_socache.c seems to have different line endings to > other source files. Hmmm, that'll be svn properties, which have yet to be set. -- Nick Kew
