summaryrefslogtreecommitdiff
path: root/test/testnames.c
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2006-07-24 03:43:25 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2006-07-24 03:43:25 +0000
commit65179320ed9dbe116343eefa3af9e61f96831f85 (patch)
tree88092815c68bca2b920863c5b874358e09b5ce57 /test/testnames.c
parent1b0ad3531addfdd32864589ace2430b23d90bdb6 (diff)
downloadlibapr-65179320ed9dbe116343eefa3af9e61f96831f85.tar.gz
My revision should have confirmed ../../.. -> ../../../
since the truename function decorates 'directories' with '/'. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@424893 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testnames.c')
-rw-r--r--test/testnames.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testnames.c b/test/testnames.c
index c888af5a3..28a3070fc 100644
--- a/test/testnames.c
+++ b/test/testnames.c
@@ -100,7 +100,7 @@ static void merge_dotdot_dotdot_dotdot(abts_case *tc, void *data)
"../../..", APR_FILEPATH_TRUENAME, p);
ABTS_PTR_NOTNULL(tc, dstpath);
ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, "../../..", dstpath);
+ ABTS_STR_EQUAL(tc, "../../../", dstpath);
rv = apr_filepath_merge(&dstpath, "",
"../../../", APR_FILEPATH_TRUENAME, p);