summaryrefslogtreecommitdiff
path: root/src/fs/fs_test_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-02-01 08:48:47 +0000
committerChristian Grothoff <christian@grothoff.org>2013-02-01 08:48:47 +0000
commit309276a88d1e57dffbea0014dc0708726c2e9376 (patch)
tree285ffccfe3cf9f69c7f3f537d80e473e8f087cc9 /src/fs/fs_test_lib.h
parent4785f9c53cad18c14a20e9341b86b97f1021a574 (diff)
downloadgnunet-309276a88d1e57dffbea0014dc0708726c2e9376.tar.gz
gnunet-309276a88d1e57dffbea0014dc0708726c2e9376.zip
-fix non-terminating index test --- do not remove file early
Diffstat (limited to 'src/fs/fs_test_lib.h')
-rw-r--r--src/fs/fs_test_lib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fs/fs_test_lib.h b/src/fs/fs_test_lib.h
index d00c21b1e..679e0745c 100644
--- a/src/fs/fs_test_lib.h
+++ b/src/fs/fs_test_lib.h
@@ -39,10 +39,13 @@
39 * 39 *
40 * @param cls closure (user defined) 40 * @param cls closure (user defined)
41 * @param uri a URI, NULL for errors 41 * @param uri a URI, NULL for errors
42 * @param fn name of the file on disk to be removed upon
43 * completion, or NULL for inserted files (also NULL on error)
42 */ 44 */
43typedef void (*GNUNET_FS_TEST_UriContinuation) (void *cls, 45typedef void (*GNUNET_FS_TEST_UriContinuation) (void *cls,
44 const struct GNUNET_FS_Uri * 46 const struct GNUNET_FS_Uri *
45 uri); 47 uri,
48 const char *fn);
46 49
47 50
48/** 51/**