bnicholes 2002/12/19 08:15:29
Modified: test testdso.c
Log:
Missing LIB_NAME2 #ifdef
Revision Changes Path
1.30 +2 -0 apr/test/testdso.c
Index: testdso.c
===================================================================
RCS file: /home/cvs/apr/test/testdso.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- testdso.c 11 Dec 2002 19:59:06 -0000 1.29
+++ testdso.c 19 Dec 2002 16:15:29 -0000 1.30
@@ -275,9 +275,11 @@
getcwd(filename, 256);
filename = apr_pstrcat(p, filename, "/", LIB_NAME, NULL);
+#ifdef LIB_NAME2
filename2 = apr_pcalloc(p, 256);
getcwd(filename2, 256);
filename2 = apr_pstrcat(p, filename2, "/", LIB_NAME2, NULL);
+#endif
SUITE_ADD_TEST(suite, test_load_module);
SUITE_ADD_TEST(suite, test_dso_sym);