diff options
author | Herb Lewis <herb@samba.org> | 2003-08-15 02:25:41 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2003-08-15 02:25:41 +0000 |
commit | 0fc41a8962e86f477891e26c784ded81af75794a (patch) | |
tree | d0aa1924cde07545241e8f6d066318e2d0147073 /source3/client | |
parent | 7753ed9acf117851e53cb1c489ec475ad531fd47 (diff) | |
download | samba-0fc41a8962e86f477891e26c784ded81af75794a.tar.gz samba-0fc41a8962e86f477891e26c784ded81af75794a.tar.bz2 samba-0fc41a8962e86f477891e26c784ded81af75794a.zip |
get rid of const as these things really are not const
(This used to be commit 61bea183a229cc11f25c4a7cb5341faad9833d7b)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |