Changeset 3349 in MondoRescue for branches/3.2/mondo/src
- Timestamp:
- Feb 26, 2015, 2:30:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mondo/src/common/libmondo-fork.c
r3292 r3349 50 50 51 51 assert_string_is_neither_NULL_nor_zerolength(call); 52 log_msg(5, "cpaglloo called with '%s'", call); 52 53 if ((fin = popen(call, "r"))) { 53 54 while (!feof(fin)) { … … 55 56 if (strlen(tmp) > 1) { 56 57 strcpy(result, tmp); 58 log_msg(7, "result = '%s'", result); 57 59 } 58 60 mr_free(tmp); … … 63 65 } 64 66 strip_spaces(result); 67 log_msg(5, "cpaglloo returns '%s'", result); 65 68 return(result); 66 69 }
Note:
See TracChangeset
for help on using the changeset viewer.