1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r1544: add some comments and fix 'return True' -> 'return ret'

metze
This commit is contained in:
Stefan Metzmacher 2004-07-19 06:41:34 +00:00 committed by Gerald (Jerry) Carter
parent 3f2b77d7ec
commit a9a22d1e0d

View File

@ -286,7 +286,9 @@ static BOOL test_NetCharDevQEnum(struct dcerpc_pipe *p,
return ret;
}
/**************************/
/* srvsvc_NetConn */
/**************************/
static BOOL test_NetConnEnum(struct dcerpc_pipe *p,
TALLOC_CTX *mem_ctx)
{
@ -321,9 +323,12 @@ static BOOL test_NetConnEnum(struct dcerpc_pipe *p,
}
}
return True;
return ret;
}
/**************************/
/* srvsvc_NetFile */
/**************************/
static BOOL test_NetFileEnum(struct dcerpc_pipe *p,
TALLOC_CTX *mem_ctx)
{
@ -359,9 +364,12 @@ static BOOL test_NetFileEnum(struct dcerpc_pipe *p,
}
}
return True;
return ret;
}
/**************************/
/* srvsvc_NetSess */
/**************************/
static BOOL test_NetSessEnum(struct dcerpc_pipe *p,
TALLOC_CTX *mem_ctx)
{
@ -397,7 +405,7 @@ static BOOL test_NetSessEnum(struct dcerpc_pipe *p,
}
}
return True;
return ret;
}
/**************************/
@ -439,6 +447,9 @@ static BOOL test_NetShareGetInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
return ret;
}
/**************************/
/* srvsvc_NetShare */
/**************************/
static BOOL test_NetShareEnumAll(struct dcerpc_pipe *p,
TALLOC_CTX *mem_ctx)
{
@ -524,7 +535,7 @@ static BOOL test_NetShareEnum(struct dcerpc_pipe *p,
}
}
return True;
return ret;
}
/**************************/