*** apache_base:[src.modules.standard]mod_include.c;1 Mon Aug 23 11:38:22 1999 --- apache_cur:[src.modules.standard]mod_include.c;2 Mon Aug 23 11:38:07 1999 *************** *** 116,122 **** /* XXX: could use ap_table_overlap here */ static void add_include_vars(request_rec *r, char *timefmt) { ! #ifndef WIN32 struct passwd *pw; #endif /* ndef WIN32 */ table *e = r->subprocess_env; --- 116,122 ---- /* XXX: could use ap_table_overlap here */ static void add_include_vars(request_rec *r, char *timefmt) { ! #if !defined(WIN32) && !defined(VMS) struct passwd *pw; #endif /* ndef WIN32 */ table *e = r->subprocess_env; *************** *** 129,135 **** ap_ht_time(r->pool, r->finfo.st_mtime, timefmt, 0)); ap_table_setn(e, "DOCUMENT_URI", r->uri); ap_table_setn(e, "DOCUMENT_PATH_INFO", r->path_info); ! #ifndef WIN32 pw = getpwuid(r->finfo.st_uid); if (pw) { ap_table_setn(e, "USER_NAME", ap_pstrdup(r->pool, pw->pw_name)); --- 129,135 ---- ap_ht_time(r->pool, r->finfo.st_mtime, timefmt, 0)); ap_table_setn(e, "DOCUMENT_URI", r->uri); ap_table_setn(e, "DOCUMENT_PATH_INFO", r->path_info); ! #if !defined(WIN32) && !defined(VMS) pw = getpwuid(r->finfo.st_uid); if (pw) { ap_table_setn(e, "USER_NAME", ap_pstrdup(r->pool, pw->pw_name));