summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-01-29 18:52:53 +0000
committerWayne Davison <wayned@samba.org>2006-01-29 18:52:53 +0000
commit63cf5ae72cc8f844bb8b478de0343f862db40a41 (patch)
tree95457e44ef8aa45dccb065c090d7d01ed32551db /util.c
parent120cde95629a395f4cc737c68bb9b587cd1051ae (diff)
downloadrsync-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util.c b/util.c
index 75a3e23c..3d88b15c 100644
--- a/util.c
+++ b/util.c
@@ -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;