diff options
author | Matthias Wachs <wachs@net.in.tum.de> | 2015-01-08 11:34:59 +0000 |
---|---|---|
committer | Matthias Wachs <wachs@net.in.tum.de> | 2015-01-08 11:34:59 +0000 |
commit | e98202cd2756666a4e01de266f5c7a08fcb7be4d (patch) | |
tree | f87079187ce1ccab96c44957a6a809b1d68257ee /contrib/test_gnunet_prefix.c | |
parent | 023460cf00841294fe32497bdeddac91659261b7 (diff) |
fix for mantis bug #3606: fixed path suffix appended to GNUNET_PREFIX
Diffstat (limited to 'contrib/test_gnunet_prefix.c')
-rw-r--r-- | contrib/test_gnunet_prefix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_gnunet_prefix.c b/contrib/test_gnunet_prefix.c index ddb432138..6f9eed9b4 100644 --- a/contrib/test_gnunet_prefix.c +++ b/contrib/test_gnunet_prefix.c @@ -43,7 +43,7 @@ main (int argc, _("Testcases will not work!\n")); return 1; } - dirname = DIR_SEPARATOR_STR ".." DIR_SEPARATOR_STR "share" DIR_SEPARATOR_STR "gnunet" DIR_SEPARATOR_STR "config.d"; + dirname = DIR_SEPARATOR_STR "share" DIR_SEPARATOR_STR "gnunet" DIR_SEPARATOR_STR "config.d"; { char tmp[strlen (basename) + strlen (dirname) + 1]; sprintf (tmp, "%s%s", basename, dirname); |