1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-29 15:42:04 +03:00

werror: replace WERR_INVALID_PARAM with WERR_INVALID_PARAMETER in source3/lib/netapi/

Guenther

Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Günther Deschner
2015-12-03 15:24:23 +01:00
committed by Jeremy Allison
parent 3a33b6652d
commit 9bde08f153
11 changed files with 43 additions and 43 deletions

View File

@ -34,7 +34,7 @@ static NET_API_STATUS libnetapi_init_private_context(struct libnetapi_ctx *ctx)
struct libnetapi_private_ctx *priv;
if (!ctx) {
return W_ERROR_V(WERR_INVALID_PARAM);
return W_ERROR_V(WERR_INVALID_PARAMETER);
}
priv = talloc_zero(ctx, struct libnetapi_private_ctx);