From 0fc41a8962e86f477891e26c784ded81af75794a Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Fri, 15 Aug 2003 02:25:41 +0000 Subject: get rid of const as these things really are not const (This used to be commit 61bea183a229cc11f25c4a7cb5341faad9833d7b) --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index 67fadd11a8..c4407b8c31 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2186,7 +2186,7 @@ static int cmd_help(void) static int process_command_string(char *cmd) { pstring line; - const char *ptr; + char *ptr; int rc = 0; /* establish the connection if not already */ @@ -2460,7 +2460,7 @@ static void readline_callback(void) static void process_stdin(void) { - const char *ptr; + char *ptr; while (1) { fstring tok; -- cgit