Age | Commit message (Expand) | Author |
2019-03-03 | in vdprintf(), no need to use the file locking mecanism when using | Sebastien Marie |
2019-01-25 | I am retiring my old email address; replace it with my OpenBSD one. | Todd C. Miller |
2019-01-16 | For all functions known to be infected by LC_NUMERIC, add short | Ingo Schwarze |
2019-01-11 | Similar CAVEATS regarding LC_NUMERIC as was just committed | Ingo Schwarze |
2019-01-11 | Clarify that OpenBSD ignores the dangerous category LC_NUMERIC, | Ingo Schwarze |
2018-12-16 | Restore the optimization for unbuffered I/O. The buffer needs to | Todd C. Miller |
2018-12-16 | Back out rev 1.17 for now, it causes issues with python when building | Todd C. Miller |
2018-12-14 | Revisit the optimization for unbuffered I/O. We can use the buffer | Todd C. Miller |
2018-12-14 | Back out the optimization in rev 1.13, it does not update flags on | Todd C. Miller |
2018-01-02 | some grammar fixes; from dholland@netbsd, -r1.68 | Jason McIntyre |
2017-12-08 | Fix the return value of fwscanf(3) when encountering an early matching | Kevin Lo |
2017-12-01 | Consistently .Xr the corresponding wide char functions from char- and | Ingo Schwarze |
2017-12-01 | add missing argument name; from <kshe59 at zoho dot eu>; OK jmc@; | Ingo Schwarze |
2017-11-28 | GNU ld has prefixed the contents of .gnu.warning.SYMBOL sections | Theo Buehler |
2017-11-21 | Use a simple forward search to find '%' in the format string instead of | Theo Buehler |
2017-11-16 | Add error checking to some calls to __find_arguments(). Matches similar | Theo Buehler |
2017-10-17 | add missing HISTORY; based on CVS logs and release announcements | Ingo Schwarze |
2017-08-15 | fmt0 is a wchar_t *, so use %ls to report | Theo de Raadt |
2017-07-22 | Favor err() over perror() in example. | anton |
2017-07-04 | 1. mild deprecation notice | Ingo Schwarze |
2017-06-12 | Add dprintf() and vdprintf() RETURN VALUES. OK deraadt@ | Todd C. Miller |
2017-04-13 | Use recallocarray in getdelim/getline to clear memory on buffer resizes, | Bryan Steele |
2017-03-17 | Use recallocarray() to avoid leaving detritus in memory when resizing | Todd C. Miller |
2017-03-17 | Use recallocarray() to avoid leaving detritus in memory when resizing | Theo de Raadt |
2017-03-16 | Only reallocate the buffer to fit for medium-size allocations where | Todd C. Miller |
2017-03-16 | When reallocating the buffer for asprintf(), just round up to the | Todd C. Miller |
2017-03-14 | Use a macro for the initial length of the buffer instead of 127; OK deraadt@ | Todd C. Miller |
2016-10-30 | include float.h for the LDBL_MAX_EXP cpp test in floatio.h | Jonathan Gray |
2016-09-21 | Delete casts to off_t and size_t that are implied by assignments | Philip Guenther |
2016-08-29 | Store the return value of mbrtowc() in a size_t, not int. | Todd C. Miller |
2016-08-27 | Stop recommending the non-standard and slightly dangerous fgetln(3). | Ingo Schwarze |
2016-08-27 | When a precision is specified for a string format use strnlen() | Todd C. Miller |
2016-08-27 | improve revision 1.2: in unusual cases, fgetwc(3) can succeed | Ingo Schwarze |
2016-08-25 | After read errors, fgetln(3) sometimes succeeded (returning non-NULL) | Ingo Schwarze |
2016-08-24 | set the error indicator on malloc(3) failure; | Ingo Schwarze |
2016-08-21 | bugfix: when fgetwc(3) fails, fgetwln(3) must fail as well; | Ingo Schwarze |
2016-08-17 | % is escaped with more %, not backslash. | Ted Unangst |
2016-08-17 | Generate syslog warnings for %s fmt strings NULL to "(null)" conversions. | Theo de Raadt |
2016-06-06 | Add ERRORS section, from FreeBSD. OK tedu@ | Todd C. Miller |
2016-06-06 | Return EOVERFLOW, not ENOMEM for overflow conditions to match POSIX. | Todd C. Miller |
2016-05-26 | fputs(3) now returns a non-negative number (as opposed to 0) on successful | Todd C. Miller |
2016-05-23 | Make _fwalk and _cleanup completely internal to libc | Philip Guenther |
2016-05-07 | Use a Thread Information Block in both single and multi-threaded programs. | Philip Guenther |
2016-04-05 | Prefer _MUTEX_*LOCK over _THREAD_PRIVATE_MUTEX_*LOCK() when thread-specific | Philip Guenther |
2016-04-04 | get* can change *lineptr on failure | Philip Guenther |
2016-03-30 | for some time now mandoc has not required MLINKS to function | Jason McIntyre |
2016-03-26 | fix typo: "prefer seek()" -> "prefer fseek()" | Theo Buehler |
2016-03-20 | Currently we have about a 50/50 split over fcntl(n, F_GETFL [,0]) | Kenneth R Westerback |
2016-03-15 | remind people rewind is seldom a good choice | Marc Espie |
2016-01-26 | When encoding fails in fputwc(3), set the error indicator as required | Ingo Schwarze |