summaryrefslogtreecommitdiffstats
path: root/source/client
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-03-18 09:43:00 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-03-18 09:43:00 +0000
commited245023016779700571d108e7b9339236bcbe7c (patch)
tree7521de7a05db0fa2747772352a1ab2f57e493d43 /source/client
parentf0d009c3e91979b0dc3443e16f3f545bcc64cfda (diff)
downloadsamba-ed245023016779700571d108e7b9339236bcbe7c.tar.gz
samba-ed245023016779700571d108e7b9339236bcbe7c.tar.xz
samba-ed245023016779700571d108e7b9339236bcbe7c.zip
Add const.
Diffstat (limited to 'source/client')
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 5da12fd984f..41dc264b425 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -1291,7 +1291,7 @@ static int file_find(struct file_list **list, const char *directory,
int ret;
char *path;
BOOL isdir;
- char *dname;
+ const char *dname;
dir = opendir(directory);
if (!dir) return -1;