libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 22b9e0d7b52c59d43fcbedde37ca71d4daea5347
parent d44981481087d7abbbebdd98c12cb8675d171981
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat, 12 Apr 2008 20:48:12 +0000

rename

Diffstat:
Msrc/daemon/Makefile.am | 10+++++-----
Rsrc/daemon/daemontest.c -> src/daemon/daemon_test.c | 0
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am @@ -24,14 +24,14 @@ libmicrohttpd_la_SOURCES = \ response.c response.h check_PROGRAMS = \ - postprocessor_test - daemontest + postprocessor_test \ + daemon_test TESTS = $(check_PROGRAMS) -daemontest_SOURCES = \ - daemontest.c -daemontest_LDADD = \ +daemon_test_SOURCES = \ + daemon_test.c +daemon_test_LDADD = \ $(top_builddir)/src/daemon/libmicrohttpd.la postprocessor_test_SOURCES = \ diff --git a/src/daemon/daemontest.c b/src/daemon/daemon_test.c