summaryrefslogtreecommitdiff
path: root/source3/rpcclient/display.c
diff options
context:
space:
mode:
authorMatthew Chapman <matty@samba.org>1999-02-12 03:09:24 +0000
committerMatthew Chapman <matty@samba.org>1999-02-12 03:09:24 +0000
commit2b8292075cb2b8585eba48ab14a7ed94cb6ed003 (patch)
treeba1ae2e6eef48ce8ff1e3ea4e840efda2807626e /source3/rpcclient/display.c
parentfd96929ec1fa27e0affd4c4e9ba307c4ee30b978 (diff)
downloadsamba-2b8292075cb2b8585eba48ab14a7ed94cb6ed003.tar.gz
samba-2b8292075cb2b8585eba48ab14a7ed94cb6ed003.tar.bz2
samba-2b8292075cb2b8585eba48ab14a7ed94cb6ed003.zip
Cut and paste error.
(This used to be commit 9ea91d89d2a1baa67f5143ecc08eb60c93213242)
Diffstat (limited to 'source3/rpcclient/display.c')
-rw-r--r--source3/rpcclient/display.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/rpcclient/display.c b/source3/rpcclient/display.c
index 56efdf74be..3432932686 100644
--- a/source3/rpcclient/display.c
+++ b/source3/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 ))));