APACHE 1.3 STATUS: -*-text-*-
- Last modified at [$Date: 2001/09/11 03:11:57 $]
+ Last modified at [$Date: 2001/09/11 03:29:10 $]
Release:
RELEASE SHOWSTOPPERS:
- mod_auth is now broken on win32, due to the getpwuid changes.
-
ab is broken on many platforms. Dirk has offered patch, it does not
apply cleanly, he has offered to clean this up.
username (from the appropriate AuthUserFile database) matches
the username of the UID that owns the document (and equivalent
checking for file GID and user's membership in AuthGroupFile).
- See the mod_auth documentation for examples. [Ken Coar]
+ See the mod_auth documentation for examples. (Not supported
+ on Windows.) [Ken Coar]
*) Addition of the AcceptMutex runtime directive. The accept mutex
method is now runtime controllable. The suite of available methods
* owner of the document.
*/
if (strcmp(w, "file-owner") == 0) {
+#if defined(WIN32)
+ ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERROR, r,
+ "'Require file-user' not supported on Windows");
+ return HTTP_UNAUTHORIZED;
+#else
struct passwd *pwent;
ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_DEBUG, r,
"checking for 'owner' access for file '%s'",
return HTTP_UNAUTHORIZED;
}
}
+#endif
}
if (strcmp(w, "file-group") == 0) {
+#if defined(WIN32)
+ ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERROR, r,
+ "'Require file-group' not supported on Windows");
+ return HTTP_UNAUTHORIZED;
+#else
struct group *grent;
if (sec->auth_grpfile == NULL) {
ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, r,
return HTTP_UNAUTHORIZED;
}
}
+#endif
}
if (strcmp(w, "user") == 0) {
while (t[0] != '\0') {