From 34a815422e409f439c002af5273d7482975b65e3 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 18 Jan 2006 16:01:13 +0000 Subject: r13001: fix compiler warnings metze (This used to be commit 32cfd7c8df0fb0fe1da8a4d3acabbaa111326352) --- source4/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/client/client.c') diff --git a/source4/client/client.c b/source4/client/client.c index afaa313928..e149933626 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -2164,7 +2164,7 @@ static int cmd_addprivileges(const char **cmd_ptr) ZERO_STRUCT(rights); while (next_token(cmd_ptr,buf,NULL,sizeof(buf))) { rights.names = talloc_realloc(mem_ctx, rights.names, - struct lsa_String, rights.count+1); + struct lsa_StringLarge, rights.count+1); rights.names[rights.count].string = talloc_strdup(mem_ctx, buf); rights.count++; } @@ -2214,7 +2214,7 @@ static int cmd_delprivileges(const char **cmd_ptr) ZERO_STRUCT(rights); while (next_token(cmd_ptr,buf,NULL,sizeof(buf))) { rights.names = talloc_realloc(mem_ctx, rights.names, - struct lsa_String, rights.count+1); + struct lsa_StringLarge, rights.count+1); rights.names[rights.count].string = talloc_strdup(mem_ctx, buf); rights.count++; } -- cgit