summaryrefslogtreecommitdiffstats
path: root/source/smbd/notify_internal.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-03-29 09:35:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:19:00 -0500
commit3a28443079c141a6ce8182c65b56ca210e34f37f (patch)
treeaf4f98cbdd18a94414169bbdec13e17c4c4319ef /source/smbd/notify_internal.c
parent1f047d7e31252481c4ed905e0dfdb791c704adca (diff)
downloadsamba-3a28443079c141a6ce8182c65b56ca210e34f37f.tar.gz
samba-3a28443079c141a6ce8182c65b56ca210e34f37f.tar.xz
samba-3a28443079c141a6ce8182c65b56ca210e34f37f.zip
r22009: change TDB_DATA from char * to unsigned char *
and fix all compiler warnings in the users metze
Diffstat (limited to 'source/smbd/notify_internal.c')
-rw-r--r--source/smbd/notify_internal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/notify_internal.c b/source/smbd/notify_internal.c
index 72b96049350..e1f47540e53 100644
--- a/source/smbd/notify_internal.c
+++ b/source/smbd/notify_internal.c
@@ -231,7 +231,7 @@ static NTSTATUS notify_save(struct notify_context *notify)
NDR_PRINT_DEBUG(notify_array, notify->array);
}
- dbuf.dptr = (char *)blob.data;
+ dbuf.dptr = blob.data;
dbuf.dsize = blob.length;
ret = tdb_store_bystring(notify->w->tdb, NOTIFY_KEY, dbuf, TDB_REPLACE);