diff options
author | Wayne Davison <wayned@samba.org> | 2006-01-29 18:52:53 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-01-29 18:52:53 +0000 |
commit | 63cf5ae72cc8f844bb8b478de0343f862db40a41 (patch) | |
tree | 95457e44ef8aa45dccb065c090d7d01ed32551db /util.c | |
parent | 120cde95629a395f4cc737c68bb9b587cd1051ae (diff) | |
download | rsync-63cf5ae72cc8f844bb8b478de0343f862db40a41.tar.gz rsync-63cf5ae72cc8f844bb8b478de0343f862db40a41.tar.bz2 rsync-63cf5ae72cc8f844bb8b478de0343f862db40a41.zip |
Made a bunch of char* args const.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -260,7 +260,7 @@ static int safe_read(int desc, char *ptr, size_t len) * * This is used in conjunction with the --temp-dir, --backup, and * --copy-dest options. */ -int copy_file(char *source, char *dest, mode_t mode) +int copy_file(const char *source, const char *dest, mode_t mode) { int ifd; int ofd; @@ -329,7 +329,7 @@ int copy_file(char *source, char *dest, mode_t mode) * --delete trying to remove old .rsyncNNN files, hence it renames it * each time. **/ -int robust_unlink(char *fname) +int robust_unlink(const char *fname) { #ifndef ETXTBSY return do_unlink(fname); @@ -378,7 +378,7 @@ int robust_unlink(char *fname) /* Returns 0 on successful rename, 1 if we successfully copied the file * across filesystems, -2 if copy_file() failed, and -1 on other errors. */ -int robust_rename(char *from, char *to, int mode) +int robust_rename(const char *from, const char *to, int mode) { int tries = 4; |