diff options
author | Gerald Carter <jerry@samba.org> | 2000-12-11 17:51:05 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2000-12-11 17:51:05 +0000 |
commit | b646d3f96e88188b8032a41d0c38a47af39fe831 (patch) | |
tree | bb677c414419eb10baff35ca034ba0b48286784f /source3/include | |
parent | ea4a0d509ef70e91baedc5eebf4f4bcff10dac96 (diff) | |
download | samba-b646d3f96e88188b8032a41d0c38a47af39fe831.tar.gz samba-b646d3f96e88188b8032a41d0c38a47af39fe831.tar.bz2 samba-b646d3f96e88188b8032a41d0c38a47af39fe831.zip |
type for client_info struct
(This used to be commit 2c03b91d6041082bba6ba4322ed41b4378af7ef3)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpcclient.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/rpcclient.h b/source3/include/rpcclient.h index ec7690a98a..200d590c33 100644 --- a/source3/include/rpcclient.h +++ b/source3/include/rpcclient.h @@ -121,7 +121,7 @@ struct nt_client_info struct nt_client_info dom; }; */ -struct client_info +typedef struct client_info { struct in_addr dest_ip; fstring dest_host; @@ -133,7 +133,7 @@ struct client_info BOOL reuse; BOOL show_prompt; -}; +} CLIENT_INFO; enum action_type {ACTION_HEADER, ACTION_ENUMERATE, ACTION_FOOTER}; |