stas 2004/07/06 11:51:55
Modified: t/htdocs/protocols basic-auth
t/protocol/TestProtocol pseudo_http.pm
Log:
use md5 "password" so that will work on win32 too, where crypt is not
supported
Revision Changes Path
1.2 +1 -1 modperl-2.0/t/htdocs/protocols/basic-auth
Index: basic-auth
===================================================================
RCS file: /home/cvs/modperl-2.0/t/htdocs/protocols/basic-auth,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -u -r1.1 -r1.2
--- basic-auth 5 Jul 2004 01:36:47 -0000 1.1
+++ basic-auth 6 Jul 2004 18:51:55 -0000 1.2
@@ -1 +1 @@
-stas:Bk4ZXGa.lVGTQ
+stas:$apr1$qnKIk...$TRSGo5zlwo3LMc0R/iLWo/
1.3 +2 -1 modperl-2.0/t/protocol/TestProtocol/pseudo_http.pm
Index: pseudo_http.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/t/protocol/TestProtocol/pseudo_http.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -u -r1.2 -r1.3
--- pseudo_http.pm 6 Jul 2004 15:49:13 -0000 1.2
+++ pseudo_http.pm 6 Jul 2004 18:51:55 -0000 1.3
@@ -142,7 +142,8 @@
Allow from @servername@
Require user stas
Satisfy any
- # htpasswd -bc basic-auth stas foobar
+ # htpasswd -mbc basic-auth stas foobar
+ # using md5 password so it'll work on win32 too
AuthUserFile @ServerRoot@/htdocs/protocols/basic-auth
</IfModule>
</IfModule>