diff options
Diffstat (limited to 'source3/client/clitar.c')
-rw-r--r-- | source3/client/clitar.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c index 05bd0c36366..ecf5700d35c 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -123,10 +123,10 @@ static char *fix_unix_path (char *path, bool removeprefix) } } - /* replace \ with / */ + /* replace / with \ */ while (*from) { - if (*from == '\\') { - *to = '/'; + if (*from == '/') { + *to = '\\'; } else { *to = *from; } @@ -429,6 +429,7 @@ int cmd_setmode(void) return 0; } +/* static int send_file(struct archive_entry *entry, */ /** * cmd_tar - interactive command to start a tar backup/restoration |