summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/rpcclient/rpcclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index f359045bae..b1637a3249 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -1264,7 +1264,7 @@ static char **completion_fn(char *text, int start, int end)
for (i = 0; i <= end; i++) {
if ((rl_line_buffer[i] != ' ') && (lastch == ' '))
{
- if (next_token(&ptr, tmp, NULL, sizeof(tmp)))
+ if (next_token(NULL, tmp, NULL, sizeof(tmp)))
{
add_chars_to_array(&cmd_argc, &cmd_argv, tmp);
}