1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-07 20:23:50 +03:00

r18823: Fix some errors in the srsvc handling code and start running the RPC-SRVSVC

test against samba3.
This commit is contained in:
Jelmer Vernooij
2006-09-22 15:09:08 +00:00
committed by Gerald (Jerry) Carter
parent cdc81927db
commit f0508ecb44
2 changed files with 9 additions and 5 deletions

View File

@@ -803,7 +803,8 @@ static void init_srv_sess_info_1(pipes_struct *p, struct srvsvc_NetSessCtr1 *ss1
}
if (ss1 == NULL) {
(*snum) = 0;
if (snum != NULL)
(*snum) = 0;
return;
}
@@ -867,7 +868,8 @@ static WERROR init_srv_sess_info_ctr(pipes_struct *p, union srvsvc_NetSessCtr *c
break;
default:
DEBUG(5,("init_srv_sess_info_ctr: unsupported switch value %d\n", switch_value));
(*resume_hnd) = 0;
if (resume_hnd != NULL)
(*resume_hnd) = 0;
(*total_entries) = 0;
ctr->ctr0 = NULL;
status = WERR_UNKNOWN_LEVEL;
@@ -887,7 +889,8 @@ static void init_srv_conn_info_0(pipes_struct *p, struct srvsvc_NetConnCtr0 *ss0
(*stot) = 1;
if (ss0 == NULL) {
(*snum) = 0;
if (snum != NULL)
(*snum) = 0;
return;
}
@@ -928,7 +931,8 @@ static void init_srv_conn_info_1(pipes_struct *p, struct srvsvc_NetConnCtr1 *ss1
(*stot) = 1;
if (ss1 == NULL) {
(*snum) = 0;
if (snum != NULL)
(*snum) = 0;
return;
}