- Timestamp:
- Feb 12, 2016, 4:11:06 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mondo/src/common/libmondo-tools.c
r3503 r3504 483 483 if (find_home_of_exe("xorriso")) { 484 484 mr_asprintf(isofs_cmd, "%s", MONDO_XORRISO_CMD); 485 else if (find_home_of_exe("genisoimage")) {485 } else if (find_home_of_exe("genisoimage")) { 486 486 mr_asprintf(isofs_cmd, "%s", MONDO_GENISOIMAGE_CMD); 487 487 } else { … … 670 670 char* mkdtemp(char *template) 671 671 { 672 if (mk temp(template) == NULL || mkdir(template, 0700) != 0)672 if (mkstemp(template) == NULL || mkdir(template, 0700) != 0) 673 673 return NULL; 674 674 return template;
Note:
See TracChangeset
for help on using the changeset viewer.