Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 13537 invoked by uid 6000); 12 Jan 1999 22:35:01 -0000 Received: (qmail 13512 invoked by alias); 12 Jan 1999 22:34:59 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 13508 invoked by uid 161); 12 Jan 1999 22:34:58 -0000 Date: 12 Jan 1999 22:34:58 -0000 Message-ID: <19990112223458.13507.qmail@hyperreal.org> From: coar@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3/src/support Makefile.tmpl htdigest.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org coar 99/01/12 14:34:57 Modified: src/support Makefile.tmpl htdigest.c Log: An item missed when main/md5c.c moved to ap/ap_md5c.c. Submitted by: Ryan Bloom Reviewed by: Ken Coar Revision Changes Path 1.28 +1 -1 apache-1.3/src/support/Makefile.tmpl Index: Makefile.tmpl =================================================================== RCS file: /home/cvs/apache-1.3/src/support/Makefile.tmpl,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- Makefile.tmpl 1998/12/02 00:00:19 1.27 +++ Makefile.tmpl 1999/01/12 22:34:56 1.28 @@ -68,7 +68,7 @@ $(OSDIR)/os.h $(INCDIR)/ap_ctype.h $(INCDIR)/hsregex.h htdigest.o: htdigest.c $(INCDIR)/ap_config.h \ $(INCDIR)/ap_config_auto.h $(OSDIR)/os.h $(INCDIR)/ap_ctype.h \ - $(INCDIR)/hsregex.h ../main/md5c.c $(INCDIR)/ap_md5.h + $(INCDIR)/hsregex.h $(INCDIR)/ap_md5.h htpasswd.o: htpasswd.c $(INCDIR)/ap_config.h \ $(INCDIR)/ap_config_auto.h $(OSDIR)/os.h $(INCDIR)/ap_ctype.h \ $(INCDIR)/hsregex.h 1.20 +1 -3 apache-1.3/src/support/htdigest.c Index: htdigest.c =================================================================== RCS file: /home/cvs/apache-1.3/src/support/htdigest.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- htdigest.c 1998/08/03 09:15:32 1.19 +++ htdigest.c 1999/01/12 22:34:57 1.20 @@ -17,9 +17,7 @@ #else #include #endif - -/* This is probably the easiest way to do it */ -#include "../main/md5c.c" +#include "ap_md5.h" #define LF 10 #define CR 13