stoddard 99/03/05 14:17:55
Modified: src/ap ap_md5c.c
Log:
Move the brackets outside the #ifdef to keep xemacs sane...
Revision Changes Path
1.23 +1 -2 apache-1.3/src/ap/ap_md5c.c
Index: ap_md5c.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_md5c.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ap_md5c.c 1999/03/05 21:58:51 1.22
+++ ap_md5c.c 1999/03/05 22:17:53 1.23
@@ -602,11 +602,10 @@
*/
#ifdef WIN32
return "crypt() unavailable on Win32, cannot validate password";
- }
#else
crypt_pw = crypt(passwd, hash);
ap_cpystrn(sample, crypt_pw, sizeof(sample) - 1);
- }
#endif
+ }
return (strcmp(sample, hash) == 0) ? NULL : "password mismatch";
}