diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-25 12:48:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:14 -0500 |
commit | 6310f40448f9f9e856874cbefcc25b753963a41e (patch) | |
tree | e4ce63697114f23b9cd93ad8d925e03e736ac7d9 /source4/lib/tdb | |
parent | 18104c5679331c763f513f4c01b67b68f7a746fd (diff) | |
download | samba-6310f40448f9f9e856874cbefcc25b753963a41e.tar.gz samba-6310f40448f9f9e856874cbefcc25b753963a41e.tar.bz2 samba-6310f40448f9f9e856874cbefcc25b753963a41e.zip |
r2634: use discard_const_p() in a few places
(This used to be commit 56ecda2178e33508c55c6195ccec41c06e099d6f)
Diffstat (limited to 'source4/lib/tdb')
-rw-r--r-- | source4/lib/tdb/common/tdbutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/tdb/common/tdbutil.c b/source4/lib/tdb/common/tdbutil.c index 596a79f52e..0e0a6eca28 100644 --- a/source4/lib/tdb/common/tdbutil.c +++ b/source4/lib/tdb/common/tdbutil.c @@ -82,7 +82,7 @@ static void (*TdbCatchSignal(int signum,void (*handler)(int )))(int) static TDB_DATA make_tdb_data(const char *dptr, size_t dsize) { TDB_DATA ret; - ret.dptr = dptr; + ret.dptr = discard_const_p(char, dptr); ret.dsize = dsize; return ret; } |