1
1

Ensure to use the 3rd argument to open(), per suggestion from

Sebastian Schmitzdorff, because Fedora 8 no longer accepts the
2-argument form.

This commit was SVN r16923.
Этот коммит содержится в:
Jeff Squyres 2007-12-10 22:19:23 +00:00
родитель df82fcb917
Коммит 1640897272

Просмотреть файл

@ -94,7 +94,7 @@ void orte_abort(int status, bool report)
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
goto CLEANUP;
}
fd = open(abort_file, O_CREAT);
fd = open(abort_file, O_CREAT, 0660);
if (0 < fd) close(fd);
}