diff options
author | Günther Deschner <gd@samba.org> | 2005-02-04 23:01:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:34 -0500 |
commit | 2c5e65dd5fac6677958386e43658528157d4227c (patch) | |
tree | 63fc7d7e89a9bc8a07d1483bee0bbf65228eef1e /source3/lib | |
parent | da4ae764b2c460826c5706c6cc8d38485eba2756 (diff) | |
download | samba-2c5e65dd5fac6677958386e43658528157d4227c.tar.gz samba-2c5e65dd5fac6677958386e43658528157d4227c.tar.bz2 samba-2c5e65dd5fac6677958386e43658528157d4227c.zip |
r5235: Fix compile warning.
(This used to be commit 00b5990617b341b1fe7863552acb02e30cd022e5)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/account_pol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/account_pol.c b/source3/lib/account_pol.c index b81a9fe34d..f6e3943993 100644 --- a/source3/lib/account_pol.c +++ b/source3/lib/account_pol.c @@ -271,7 +271,7 @@ static BOOL migrate_account_policy_names_to_passdb(void) } DEBUGADD(1,("\tmigrating account policy (#%d: %s with value: %d) to passdb\n", - i, (char *)decode_account_policy_name(i), tmp_val)); + i, decode_account_policy_name(i), tmp_val)); /* set policy via new passdb api */ if (!pdb_set_account_policy(i, tmp_val)) { |