* owner of the document.
*/
if (strcmp(w, "file-owner") == 0) {
-#if defined(WIN32)
+#if defined(WIN32) || defined(NETWARE)
ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERROR, r,
- "'Require file-user' not supported on Windows");
+ "'Require file-user' not supported on this platform");
return HTTP_UNAUTHORIZED;
#else
struct passwd *pwent;
#endif
}
if (strcmp(w, "file-group") == 0) {
-#if defined(WIN32)
+#if defined(WIN32) || defined(NETWARE)
ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERROR, r,
- "'Require file-group' not supported on Windows");
+ "'Require file-group' not supported on this platform");
return HTTP_UNAUTHORIZED;
#else
struct group *grent;