r5909: Remove some unecessary casts. Patch from Jason Mader for bugzill #2468.
authorTim Potter <tpot@samba.org>
Sun, 20 Mar 2005 09:23:37 +0000 (09:23 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:56:08 +0000 (10:56 -0500)
source/rpc_server/srv_samr_util.c
source/utils/net_rpc_samsync.c
source/utils/pdbedit.c

index 6797730be97abb50f32e4c3ddbc75306b6d3c911..61160ccaa02c009364e33675d8d0014607a1454f 100644 (file)
@@ -264,7 +264,7 @@ void copy_id21_to_sam_passwd(SAM_ACCOUNT *to, SAM_USER_INFO_21 *from)
 
                DEBUG(15,("INFO_21 LOGON_HRS.HOURS: %s -> %s\n",pdb_get_hours(to),from->logon_hrs.hours));
                pdb_sethexhours(old, pdb_get_hours(to));
-               pdb_sethexhours(new, (const char *)from->logon_hrs.hours);
+               pdb_sethexhours(new, from->logon_hrs.hours);
                if (!strequal(old, new)) {
                        pdb_set_hours(to, from->logon_hrs.hours, PDB_CHANGED);
                }
index 49aef2a23cd18b8c553ee3d83a458aac796a09d8..3ddfc5c9d9bfef76194375c27026c64b3c823dd0 100644 (file)
@@ -429,7 +429,7 @@ sam_account_from_delta(SAM_ACCOUNT *account, SAM_ACCOUNT_INFO *delta)
        if (delta->buf_logon_hrs.buffer) {
                pstring old, new;
                pdb_sethexhours(old, pdb_get_hours(account));
-               pdb_sethexhours(new, (const char *)delta->buf_logon_hrs.buffer);
+               pdb_sethexhours(new, delta->buf_logon_hrs.buffer);
                if (!strequal(old, new))
                        pdb_set_hours(account, (const char *)delta->buf_logon_hrs.buffer, PDB_CHANGED);
        }
index e0d48edc56310d7b26432e743d730013c45a685a..88ec6b1f4facf697edb7f2892fceff2ed767d89c 100644 (file)
@@ -175,7 +175,7 @@ static int print_sam_info (SAM_ACCOUNT *sam_pwent, BOOL verbosity, BOOL smbpwdst
                        pdb_get_bad_password_count(sam_pwent));
                
                hours = pdb_get_hours(sam_pwent);
-               pdb_sethexhours(temp, (const char *)hours);
+               pdb_sethexhours(temp, hours);
                printf ("Logon hours         : %s\n", temp);
                
        } else if (smbpwdstyle) {