aboutsummaryrefslogtreecommitdiffstats
path: root/flist.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-11-28 19:31:41 +0000
committerWayne Davison <wayned@samba.org>2006-11-28 19:31:41 +0000
commit45d8bfe09e10cecb49b030767d4bfc995d42b903 (patch)
tree1d94c924fa5126e8710145ada5013a2875298cc1 /flist.c
parentd521e1c2a1980d241b0ca611d71c78d51bf255f5 (diff)
downloadandroid_external_rsync-45d8bfe09e10cecb49b030767d4bfc995d42b903.tar.gz
android_external_rsync-45d8bfe09e10cecb49b030767d4bfc995d42b903.tar.bz2
android_external_rsync-45d8bfe09e10cecb49b030767d4bfc995d42b903.zip
Added some more "const" prefixes to some "char *" vars.
Diffstat (limited to 'flist.c')
-rw-r--r--flist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/flist.c b/flist.c
index 06b3d46b..325c101f 100644
--- a/flist.c
+++ b/flist.c
@@ -718,7 +718,7 @@ static struct file_struct *receive_file_entry(struct file_list *flist,
* statting directories if we're not recursing, but this is not a very
* important case. Some systems may not have d_type.
**/
-struct file_struct *make_file(char *fname, struct file_list *flist,
+struct file_struct *make_file(const char *fname, struct file_list *flist,
STRUCT_STAT *stp, unsigned short flags,
int filter_level)
{