diff options
author | Simo Sorce <idra@samba.org> | 2010-02-22 21:18:07 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-02-22 21:18:07 -0500 |
commit | 0c8608bbab93b0d00255424335deed27738d69c6 (patch) | |
tree | b2372cb02fbc9aab8b2605dc3ed9059d9827f666 | |
parent | d4b8be513cf1707000f2870ce42c968e17f6ab27 (diff) | |
download | samba-0c8608bbab93b0d00255424335deed27738d69c6.tar.gz samba-0c8608bbab93b0d00255424335deed27738d69c6.tar.bz2 samba-0c8608bbab93b0d00255424335deed27738d69c6.zip |
s3 Fix the build
I didn't mean to puch the GetForestTrustInformation patch just yet,
now that it is in fix the s3 build ...
-rw-r--r-- | source3/rpc_server/srv_netlog_nt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpc_server/srv_netlog_nt.c b/source3/rpc_server/srv_netlog_nt.c index 66f3bd3130..71463c28ad 100644 --- a/source3/rpc_server/srv_netlog_nt.c +++ b/source3/rpc_server/srv_netlog_nt.c @@ -1821,11 +1821,11 @@ WERROR _netr_DsRGetForestTrustInformation(pipes_struct *p, /**************************************************************** ****************************************************************/ -WERROR _netr_GetForestTrustInformation(pipes_struct *p, - struct netr_GetForestTrustInformation *r) +NTSTATUS _netr_GetForestTrustInformation(pipes_struct *p, + struct netr_GetForestTrustInformation *r) { p->rng_fault_state = true; - return WERR_NOT_SUPPORTED; + return NT_STATUS_NOT_IMPLEMENTED; } /**************************************************************** |