diff options
author | Günther Deschner <gd@samba.org> | 2008-03-04 22:54:14 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-03-04 22:54:14 +0100 |
commit | ae45a74ddc3053405cf515ea276f82c674672de2 (patch) | |
tree | 0aa283733ec9dacf58026825526fb09297264c60 | |
parent | d06274b541ac4c4f021ff2fa90690431d2bb87c9 (diff) | |
download | samba-ae45a74ddc3053405cf515ea276f82c674672de2.tar.gz samba-ae45a74ddc3053405cf515ea276f82c674672de2.tar.bz2 samba-ae45a74ddc3053405cf515ea276f82c674672de2.zip |
Fix proxy_srvsvc_call().
Wow, this must have been broken a long time already.
Guenther
(This used to be commit 821762e5ab32a2fbea7c41f1d2c2ea8589daa1d3)
-rw-r--r-- | source3/rpc_server/srv_srvsvc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/srv_srvsvc.c b/source3/rpc_server/srv_srvsvc.c index 25e652c1fd..22fcaffb4e 100644 --- a/source3/rpc_server/srv_srvsvc.c +++ b/source3/rpc_server/srv_srvsvc.c @@ -34,13 +34,13 @@ static bool proxy_srvsvc_call(pipes_struct *p, uint8 opnum) struct api_struct *fns; int n_fns; - lsarpc_get_pipe_fns(&fns, &n_fns); + srvsvc_get_pipe_fns(&fns, &n_fns); if (opnum >= n_fns) return False; if (fns[opnum].opnum != opnum) { - smb_panic("LSA function table not sorted\n"); + smb_panic("SRVSVC function table not sorted\n"); } return fns[opnum].fn(p); |