diff --git a/linux/massStorageCopy b/linux/massStorageCopy index 4a0db4b9..215d2231 100755 Binary files a/linux/massStorageCopy and b/linux/massStorageCopy differ diff --git a/linux64/massStorageCopy b/linux64/massStorageCopy index 41913d2d..64f9de7d 100755 Binary files a/linux64/massStorageCopy and b/linux64/massStorageCopy differ diff --git a/src/massStorageCopy/massStorageCopy.c b/src/massStorageCopy/massStorageCopy.c index 6fd5acce..ee28fad0 100644 --- a/src/massStorageCopy/massStorageCopy.c +++ b/src/massStorageCopy/massStorageCopy.c @@ -5,6 +5,7 @@ #include #include #include +#include static char *input_path = NULL; static char *output_path = NULL; @@ -87,7 +88,7 @@ int main(int argc, char *argv[]) if (strlen(input_path) && strlen(output_dev)) { - /* get the mounted devives list */ + /* get the mounted devices list */ aFile = setmntent("/proc/mounts", "r"); if (aFile == NULL) { perror("setmntent"); @@ -141,7 +142,7 @@ int main(int argc, char *argv[]) ret = system(cmd); } else { - printf("%s not found. please ensure the device is correctly connected\n", + printf("%s not found. Please ensure the device is correctly connected\n", output_dev); ret = ENODEV; }