clitar.c: fix_unix_path() now replace / with \
[sfrench/samba-autobuild/.git] / source3 / client / clitar.c
index 05bd0c36366dba96a9af57cd9b885a75796ae750..ecf5700d35c00dca1fb8838a24566baead57167a 100644 (file)
@@ -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