diff options
author | Tim Prouty <tprouty@samba.org> | 2009-01-15 21:59:20 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-01-15 21:59:20 -0800 |
commit | abf37b3e230a7452916d5b7237fb52eaad8f75fe (patch) | |
tree | 97e936ab3bfc52e4d0924bbc1b58b66650a2ec68 /source3/modules/vfs_acl_tdb.c | |
parent | 584da3fea3f4391bb8b68cac90947edf88d0c28d (diff) | |
download | samba-abf37b3e230a7452916d5b7237fb52eaad8f75fe.tar.gz |
s3: Remove an incorrect const
Diffstat (limited to 'source3/modules/vfs_acl_tdb.c')
-rw-r--r-- | source3/modules/vfs_acl_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_acl_tdb.c b/source3/modules/vfs_acl_tdb.c index be28b5f0d89..57fe73c814c 100644 --- a/source3/modules/vfs_acl_tdb.c +++ b/source3/modules/vfs_acl_tdb.c @@ -36,7 +36,7 @@ static struct db_context *acl_db; static bool acl_tdb_init(struct db_context **pp_db) { - const char *dbname; + char *dbname; if (acl_db) { *pp_db = acl_db; |