Ignore:
Timestamp:
May 13, 2014, 11:39:04 AM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update trunk to 3.6.23

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/auth/server_info.c

    r751 r862  
    609609        if (!info3) return NULL;
    610610
    611         info3->base.last_logon = info->logon_time;
    612         info3->base.last_logoff = info->logoff_time;
    613         info3->base.acct_expiry = info->kickoff_time;
     611        unix_to_nt_time(&info3->base.last_logon, info->logon_time);
     612        unix_to_nt_time(&info3->base.last_logoff, info->logoff_time);
     613        unix_to_nt_time(&info3->base.acct_expiry, info->kickoff_time);
    614614        unix_to_nt_time(&info3->base.last_password_change, info->pass_last_set_time);
    615615        unix_to_nt_time(&info3->base.allow_password_change,
Note: See TracChangeset for help on using the changeset viewer.