Turned the char *dir.root var in struct file_struct into a const char *.

This commit is contained in:
Wayne Davison
2006-11-13 00:27:00 +00:00
parent 149a78e33f
commit eaf895e6ef

View File

@@ -520,7 +520,7 @@ struct file_struct {
char *basename; /* The current item's name (AKA filename) */
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 {