summaryrefslogtreecommitdiff
path: root/source3/include/adt_tree.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-13 14:41:44 +0200
committerMichael Adam <obnox@samba.org>2008-04-13 15:33:47 +0200
commit01f4bd4f4d05e195911f4787f209b2ab6e2d8ab4 (patch)
tree4c8ac760604b66e21c49520b387b1cce56bfeee2 /source3/include/adt_tree.h
parent84c5da2ff490c68fcdd66c2ca909c54faed23e8c (diff)
downloadsamba-01f4bd4f4d05e195911f4787f209b2ab6e2d8ab4.tar.gz
samba-01f4bd4f4d05e195911f4787f209b2ab6e2d8ab4.tar.bz2
samba-01f4bd4f4d05e195911f4787f209b2ab6e2d8ab4.zip
adt_tree: change pathtree_add to return WERR instead of bool.
Michael (This used to be commit da45fb92f69221758f36db4cbb7d871e3ce60718)
Diffstat (limited to 'source3/include/adt_tree.h')
-rw-r--r--source3/include/adt_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/adt_tree.h b/source3/include/adt_tree.h
index 3e2f10001e..3acda8edb8 100644
--- a/source3/include/adt_tree.h
+++ b/source3/include/adt_tree.h
@@ -47,7 +47,7 @@ SORTED_TREE* pathtree_init( void *data_p, int (cmp_fn)(void*, void*) );
/* add a new path component */
-bool pathtree_add( SORTED_TREE *tree, const char *path, void *data_p );
+WERROR pathtree_add( SORTED_TREE *tree, const char *path, void *data_p );
/* search path */