From 5bbac9dd802cc7a5a5b8a3c6edc4f1cee90c9de7 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Mon, 13 Jan 2003 20:30:28 +0000 Subject: Make sure that those cleanups actually went in. (This used to be commit 9a38e378115a1c36d0cd7c41f4c5767c23b4eb3f) --- source3/libsmb/libsmbclient.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/libsmb') diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c index edf582b34d..5ceb36795a 100644 --- a/source3/libsmb/libsmbclient.c +++ b/source3/libsmb/libsmbclient.c @@ -70,7 +70,7 @@ smbc_parse_path(SMBCCTX *context, const char *fname, char *server, char *share, { static pstring s; pstring userinfo; - char *p; + const char *p; char *q, *r; int len; @@ -119,7 +119,7 @@ smbc_parse_path(SMBCCTX *context, const char *fname, char *server, char *share, r = strchr_m(p, '/'); if (q && (!r || q < r)) { pstring username, passwd, domain; - char *u = userinfo; + const char *u = userinfo; next_token(&p, userinfo, "@", sizeof(fstring)); -- cgit