summaryrefslogtreecommitdiff
path: root/source3/include/rpc_netlogon.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-08-27 19:46:22 +0000
committerAndrew Tridgell <tridge@samba.org>2001-08-27 19:46:22 +0000
commitb031af348c7dcc8c74bf49945211c466b8eca079 (patch)
treec6a20abba3c8432ad2980beeab9e1d2a8528f3a4 /source3/include/rpc_netlogon.h
parent1d726fe0e054be9017309186c24b24d032e85636 (diff)
downloadsamba-b031af348c7dcc8c74bf49945211c466b8eca079.tar.gz
samba-b031af348c7dcc8c74bf49945211c466b8eca079.tar.bz2
samba-b031af348c7dcc8c74bf49945211c466b8eca079.zip
converted another bunch of stuff to NTSTATUS
(This used to be commit 1d36250e338ae0ff9fbbf86019809205dd97d05e)
Diffstat (limited to 'source3/include/rpc_netlogon.h')
-rw-r--r--source3/include/rpc_netlogon.h22
1 files changed, 10 insertions, 12 deletions
diff --git a/source3/include/rpc_netlogon.h b/source3/include/rpc_netlogon.h
index f15cec3ca9..ce5a8b85a1 100644
--- a/source3/include/rpc_netlogon.h
+++ b/source3/include/rpc_netlogon.h
@@ -226,7 +226,7 @@ typedef struct net_r_logon_ctrl_info
NETLOGON_INFO_1 info1;
} logon;
- uint32 status;
+ NTSTATUS status;
} NET_R_LOGON_CTRL;
/********************************************************
@@ -269,7 +269,7 @@ typedef struct net_r_logon_ctrl2_info
} logon;
- uint32 status; /* return code */
+ NTSTATUS status; /* return code */
} NET_R_LOGON_CTRL2;
@@ -288,7 +288,7 @@ typedef struct net_r_trust_dom_info
{
UNISTR2 uni_trust_dom_name[MAX_TRUST_DOMS];
- uint32 status; /* return code */
+ NTSTATUS status; /* return code */
} NET_R_TRUST_DOM_LIST;
@@ -315,10 +315,8 @@ typedef struct net_q_req_chal_info
/* NET_R_REQ_CHAL */
typedef struct net_r_req_chal_info
{
- DOM_CHAL srv_chal; /* server challenge */
-
- uint32 status; /* return code */
-
+ DOM_CHAL srv_chal; /* server challenge */
+ NTSTATUS status; /* return code */
} NET_R_REQ_CHAL;
/* NET_Q_AUTH */
@@ -332,7 +330,7 @@ typedef struct net_q_auth_info
typedef struct net_r_auth_info
{
DOM_CHAL srv_chal; /* server-calculated credentials */
- uint32 status; /* return code */
+ NTSTATUS status; /* return code */
} NET_R_AUTH;
/* NET_Q_AUTH_2 */
@@ -352,7 +350,7 @@ typedef struct net_r_auth2_info
DOM_CHAL srv_chal; /* server-calculated credentials */
NEG_FLAGS srv_flgs; /* usually 0x0000 01ff */
- uint32 status; /* return code */
+ NTSTATUS status; /* return code */
} NET_R_AUTH_2;
@@ -370,7 +368,7 @@ typedef struct net_r_srv_pwset_info
{
DOM_CRED srv_cred; /* server-calculated credentials */
- uint32 status; /* return code */
+ NTSTATUS status; /* return code */
} NET_R_SRV_PWSET;
@@ -459,7 +457,7 @@ typedef struct net_r_sam_logon_info
uint32 auth_resp; /* 1 - Authoritative response; 0 - Non-Auth? */
- uint32 status; /* return code */
+ NTSTATUS status; /* return code */
} NET_R_SAM_LOGON;
@@ -477,7 +475,7 @@ typedef struct net_r_sam_logoff_info
uint32 buffer_creds; /* undocumented buffer pointer */
DOM_CRED srv_creds; /* server credentials. server time stamp appears to be ignored. */
- uint32 status; /* return code */
+ NTSTATUS status; /* return code */
} NET_R_SAM_LOGOFF;