
akosut at hyperreal
May 7, 1996, 10:07 PM
Post #1 of 1
(54 views)
Permalink
|
|
cvs commit: apache/support htdigest.c .cvsignore Makefile
|
|
akosut 96/05/07 22:07:51 Modified: src CHANGES support .cvsignore Makefile Added: support htdigest.c Log: Add htdigest utility for manipulating passwords for use with mod_digest. Revision Changes Path 1.26 +3 -0 apache/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache/src/CHANGES,v retrieving revision 1.25 retrieving revision 1.26 diff -C3 -r1.25 -r1.26 *** CHANGES 1996/04/24 03:12:53 1.25 --- CHANGES 1996/05/08 05:07:48 1.26 *************** *** 1,3 **** --- 1,6 ---- + *) htdigest utility included for use with digest authentication + module. + Changes with Apache 1.1b2. *) Bugfixes: 1.2 +1 -0 apache/support/.cvsignore Index: .cvsignore =================================================================== RCS file: /export/home/cvs/apache/support/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C3 -r1.1 -r1.2 *** .cvsignore 1996/03/12 18:09:24 1.1 --- .cvsignore 1996/05/08 05:07:50 1.2 *************** *** 1,5 **** --- 1,6 ---- rotatelogs htpasswd + htdigest unescape inc2shtml httpd_monitor 1.7 +4 -1 apache/support/Makefile Index: Makefile =================================================================== RCS file: /export/home/cvs/apache/support/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C3 -r1.6 -r1.7 *** Makefile 1996/03/12 18:09:25 1.6 --- Makefile 1996/05/08 05:07:50 1.7 *************** *** 18,24 **** .c.o: $(CC) -c $(CFLAGS) $(INCLUDES) $< ! TARGETS=htpasswd unescape inc2shtml httpd_monitor rotatelogs all: $(TARGETS) --- 18,24 ---- .c.o: $(CC) -c $(CFLAGS) $(INCLUDES) $< ! TARGETS=htpasswd htdigest unescape inc2shtml httpd_monitor rotatelogs all: $(TARGETS) *************** *** 55,60 **** --- 55,63 ---- htpasswd: htpasswd.c $(CC) $(CFLAGS) htpasswd.c -o htpasswd $(EXTRA_LIBS) + + htdigest: htdigest.c + $(CC) $(CFLAGS) htdigest.c -o htdigest unescape: unescape.c $(CC) $(CFLAGS) unescape.c -o unescape
|