Changes between Version 9 and Version 10 of Ticket #38582, comment 6
- Timestamp:
- Jul 30, 2013, 11:53:25 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #38582, comment 6
v9 v10 6 6 || `AC_CHECK_FUNCS([localtime_r])` || `src/programs/daemondo/main.c:128` || `strftime(datestring, sizeof(datestring), "%F %T", localtime_r(×tamp, &tm));` || In a log message function || `// Format the date-time stamp` (checking for this function would ensure that the log messages have properly formatted timestamps) || 7 7 || `AC_CHECK_FUNCS([memmove])` || `src/pextlib1.0/filemap.c:746` || `(void) memmove(` || idk really what's going on here... || `/* Push the pointers after the current node lower. */` This function is just one of those good ones to check for || 8 || `AC_CHECK_FUNCS([mkdir])` || `src/darwintracelib1.0/darwintrace.c:1153` || 8 || `AC_CHECK_FUNCS([mkdir])` || `src/darwintracelib1.0/darwintrace.c:1153` || `int mkdir(const char *path, mode_t mode) {` || new function declaration || `/* Trap attempts to create directories outside the sandbox. */` Make sure there are calls to `mkdir` to trap in the first place || 9 9 || `AC_CHECK_FUNCS([munmap])` || `src/machista1.0/libmachista.c:499` || `munmap(data, st.st_size);` || at the end of a function || `/* Cleanup */` Another one that's just good to check for || 10 10 || `AC_CHECK_FUNCS([realpath])` || `src/pextlib1.0/realpath.c:67` ||