Changeset 2100 in MondoRescue
- Timestamp:
- Dec 23, 2008, 12:13:58 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.8/mondo/src/common/libmondo-filelist.c
r2099 r2100 1550 1550 char *next_entry(char *incoming) 1551 1551 { 1552 static char sz_res[MAX_STR_LEN];1552 char *sz_res; 1553 1553 char *p; 1554 1554 bool in_quotes = FALSE; 1555 1555 1556 strcpy(sz_res, incoming);1556 asprintf(&sz_res, "%s", incoming); 1557 1557 p = sz_res; 1558 1558 while ((*p != ' ' || in_quotes) && *p != '\0') { … … 1690 1690 time_of_last_full_backup); 1691 1691 p += strlen(q); 1692 paranoid_free(q); 1692 1693 while (*p == ' ') { 1693 1694 p++;
Note:
See TracChangeset
for help on using the changeset viewer.