X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/c0f1e57b5184c7a3a8872f2d213f45675888a6bf..53593085cf6dbaa141c3b8f45e1883523a8cfe8b:/rsync.h diff --git a/rsync.h b/rsync.h index b8512ded..25cb5602 100644 --- a/rsync.h +++ b/rsync.h @@ -513,14 +513,14 @@ struct hlink { struct file_struct { union { dev_t rdev; /* The device number, if this is a device */ - char *sum; /* Only a normal file can have a checksum */ - char *link; /* Points to symlink string, if a symlink */ + const char *sum;/* Only a normal file can have a checksum */ + const char *link;/* Points to symlink string, if a symlink */ } u; OFF_T length; - char *basename; /* The current item's name (AKA filename) */ - char *dirname; /* The directory info inside the transfer */ + const char *basename; /* The current item's name (AKA filename) */ + const char *dirname; /* The directory info inside the transfer */ union { - char *root; /* Sender-side dir info outside transfer */ + const char *root;/* Sender-side dir info outside transfer */ int depth; /* Receiver-side directory depth info */ } dir; union {