diff options
author | Matthew Chapman <matty@samba.org> | 1999-02-12 03:09:24 +0000 |
---|---|---|
committer | Matthew Chapman <matty@samba.org> | 1999-02-12 03:09:24 +0000 |
commit | 9ea91d89d2a1baa67f5143ecc08eb60c93213242 (patch) | |
tree | c40e5be656764ffbd95cfbc6d01120b2a1ad41cb /source/rpcclient/display.c | |
parent | a1d39af1ce1d451b811dbd7c2ba391214851b87e (diff) | |
download | samba-9ea91d89d2a1baa67f5143ecc08eb60c93213242.tar.gz samba-9ea91d89d2a1baa67f5143ecc08eb60c93213242.tar.xz samba-9ea91d89d2a1baa67f5143ecc08eb60c93213242.zip |
Cut and paste error.
Diffstat (limited to 'source/rpcclient/display.c')
-rw-r--r-- | source/rpcclient/display.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source/rpcclient/display.c b/source/rpcclient/display.c index 56efdf74be8..3432932686b 100644 --- a/source/rpcclient/display.c +++ b/source/rpcclient/display.c @@ -1156,31 +1156,31 @@ void display_sam_user_info_21(FILE *out_hnd, enum action_type action, SAM_USER_I unistr2_to_ascii(temp, &usr->uni_user_name, sizeof(temp)); fprintf(out_hnd, "\t\tUser Name :\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_full_name, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_full_name, sizeof(temp)); fprintf(out_hnd, "\t\tFull Name :\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_home_dir, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_home_dir, sizeof(temp)); fprintf(out_hnd, "\t\tHome Drive :\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_dir_drive, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_dir_drive, sizeof(temp)); fprintf(out_hnd, "\t\tDir Drive :\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_profile_path, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_profile_path, sizeof(temp)); fprintf(out_hnd, "\t\tProfile Path:\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_logon_script, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_logon_script, sizeof(temp)); fprintf(out_hnd, "\t\tLogon Script:\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_acct_desc, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_acct_desc, sizeof(temp)); fprintf(out_hnd, "\t\tDescription :\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_workstations, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_workstations, sizeof(temp)); fprintf(out_hnd, "\t\tWorkstations:\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_unknown_str, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_unknown_str, sizeof(temp)); fprintf(out_hnd, "\t\tUnknown Str :\t%s\n", temp); - unistr2_to_ascii(temp, &user->uni_munged_dial, sizeof(temp)); + unistr2_to_ascii(temp, &usr->uni_munged_dial, sizeof(temp)); fprintf(out_hnd, "\t\tRemote Dial :\t%s\n", temp); fprintf(out_hnd, "\t\tLogon Time :\t%s\n", http_timestring(nt_time_to_unix(&(usr->logon_time )))); |