Changeset 693 in MondoRescue
- Timestamp:
- Jul 21, 2006, 1:19:27 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/mondo/common/libmondo-archive.c
r684 r693 3362 3362 } else { 3363 3363 file_to_openin = biggie_filename; 3364 sprintf(command, "md5sum '%s'", biggie_filename); 3364 if (strchr(biggie_filename,'\'') != NULL) { 3365 sprintf(command, "md5sum \"%s\"", biggie_filename); 3366 } else { 3367 sprintf(command, "md5sum '%s'", biggie_filename); 3368 } 3365 3369 if (!(fin = popen(command, "r"))) { 3366 3370 log_OS_error("Unable to popen-in command");
Note:
See TracChangeset
for help on using the changeset viewer.