Changeset 3618 in MondoRescue
- Timestamp:
- Dec 18, 2016, 12:19:56 AM (8 years ago)
- Location:
- branches/3.2/mondo/src/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mondo/src/common/libmondo-tools.c
r3613 r3618 983 983 } 984 984 run_program_and_log_output("umount `mount | grep cdr | cut -d' ' -f3 | tr '\n' ' '`", 5); 985 tmp = call_program_and_get_last_line_of_output("mount | grep -E \"cdr(om|w)\"");985 tmp = call_program_and_get_last_line_of_output("mount | grep -E 'cdr(om|w)'"); 986 986 if (strcmp("", tmp)) { 987 987 if (strstr(tmp, "autofs")) { -
branches/3.2/mondo/src/common/newt-specific.c
r3614 r3618 768 768 b_res = newtRunForm(myForm); 769 769 770 if (b_res != b_2) { 771 /* We need to copy the value as newtFormDestroy will clear entry_value */ 772 mr_asprintf(out, "%s", entry_value); 773 } 770 774 newtPopHelpLine(); 771 775 newtFormDestroy(myForm); … … 773 777 mr_free(blurb); 774 778 775 if (b_res != b_2) {776 out = entry_value;777 }778 779 return(out); 779 780 }
Note:
See TracChangeset
for help on using the changeset viewer.