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 | 2c03b91d6041082bba6ba4322ed41b4378af7ef3 (patch) | |
tree | 627f8d9d60dd0992d35af521110e3aab4e50d160 | |
parent | 059f4fee5d8ad72cd699995c660263ed2cc4f25f (diff) | |
download | samba-2c03b91d6041082bba6ba4322ed41b4378af7ef3.tar.gz samba-2c03b91d6041082bba6ba4322ed41b4378af7ef3.tar.xz samba-2c03b91d6041082bba6ba4322ed41b4378af7ef3.zip |
type for client_info struct
-rw-r--r-- | source/include/rpcclient.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/rpcclient.h b/source/include/rpcclient.h index ec7690a98a4..200d590c338 100644 --- a/source/include/rpcclient.h +++ b/source/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}; |