summaryrefslogtreecommitdiff
path: root/source3/rpcclient/rpcclient.c
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2005-02-28 10:55:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:55:49 -0500
commitac1cc8712295fafc007d1341e68b84cfb7b7b7a1 (patch)
tree4051ba2c2960aab1cd0f57ad9f287b895275b7ff /source3/rpcclient/rpcclient.c
parent2f158e1565e634958abf2efe31736c55d20f55cd (diff)
downloadsamba-ac1cc8712295fafc007d1341e68b84cfb7b7b7a1.tar.gz
samba-ac1cc8712295fafc007d1341e68b84cfb7b7b7a1.tar.bz2
samba-ac1cc8712295fafc007d1341e68b84cfb7b7b7a1.zip
r5591: Implement "net rpc trustdom del", including client side of
samr_remove_sid_from_foreign_domain. (This used to be commit 8360695fc02dfb09aff92a434bf9d411e65c478c)
Diffstat (limited to 'source3/rpcclient/rpcclient.c')
-rw-r--r--source3/rpcclient/rpcclient.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index acb65b7f7c..85d1d848bf 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -100,7 +100,7 @@ static char **completion_fn(const char *text, int start, int end)
static char* next_command (char** cmdstr)
{
- static pstring command;
+ static char command[10000];
char *p;
if (!cmdstr || !(*cmdstr))
@@ -109,7 +109,7 @@ static char* next_command (char** cmdstr)
p = strchr_m(*cmdstr, ';');
if (p)
*p = '\0';
- pstrcpy(command, *cmdstr);
+ strncpy(command, *cmdstr, sizeof(command));
if (p)
*cmdstr = p + 1;
else