summaryrefslogtreecommitdiff
path: root/source3/client
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-04-16 02:35:35 +0000
committerTim Potter <tpot@samba.org>2001-04-16 02:35:35 +0000
commitaf08cd21eb714abc019656bc8cee86fd7a3f20d6 (patch)
treee0e4c9e87c3e95435ffc82652c2adf1179563dae /source3/client
parent71ae6a09cd2c4792f95459220645c424f7659913 (diff)
downloadsamba-af08cd21eb714abc019656bc8cee86fd7a3f20d6.tar.gz
samba-af08cd21eb714abc019656bc8cee86fd7a3f20d6.tar.bz2
samba-af08cd21eb714abc019656bc8cee86fd7a3f20d6.zip
Getting medieval with compiler warnings as Jeremy puts it.
(This used to be commit d05c3cf0f47a3c863adbed7ad4ab8f3248cd072d)
Diffstat (limited to 'source3/client')
-rw-r--r--source3/client/client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 7b313a3136..1d48ac0f71 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -1848,13 +1848,13 @@ static void process_stdin(void)
while (1) {
fstring tok;
- fstring prompt;
+ fstring the_prompt;
char *line;
int i;
/* display a prompt */
- slprintf(prompt, sizeof(prompt)-1, "smb: %s> ", cur_dir);
- line = smb_readline(prompt, readline_callback, completion_fn);
+ slprintf(the_prompt, sizeof(the_prompt)-1, "smb: %s> ", cur_dir);
+ line = smb_readline(the_prompt, readline_callback, completion_fn);
if (!line) break;