Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mdoc(7) police: Fixed broken xrefs. | ru | 2001-08-22 | 6 | -7/+11 |
| | |||||
* | Document new EINVAL, EOVERFLOW cases. Sort ERRORS | ache | 2001-08-21 | 1 | -3/+9 |
| | |||||
* | Don't claim to be mp(3). | dd | 2001-08-21 | 1 | -1/+1 |
| | |||||
* | Use .In, .Ux, and .Rv where appropriate. Also consistently call this | dd | 2001-08-21 | 1 | -18/+16 |
| | | | | | | a "function" instead of a "routine". Submitted by: ru | ||||
* | Expand the ?: construct into an if/else. | dd | 2001-08-21 | 1 | -1/+4 |
| | | | | Submitted by: nectar | ||||
* | The setprogname() function sets the name of the program to be the last | dd | 2001-08-21 | 1 | -1/+3 |
| | | | | component of the progname argument. | ||||
* | Fix style bug. | dd | 2001-08-21 | 1 | -1/+1 |
| | |||||
* | Fixed warnings. | ru | 2001-08-21 | 2 | -1/+4 |
| | |||||
* | Pass the pointy hat, please. | nectar | 2001-08-21 | 1 | -2/+4 |
| | | | | Submitted by: ru | ||||
* | setprogname() should set __progname to the last component of the given | nectar | 2001-08-21 | 1 | -1/+3 |
| | | | | path. | ||||
* | Make sure stack is aligned to 16 bytes. | dfr | 2001-08-21 | 1 | -1/+4 |
| | |||||
* | Added TFTP support. | ru | 2001-08-21 | 1 | -0/+9 |
| | | | | | Submitted by: Joe Clarke <marcus@marcuscom.com> MFC after: 2 weeks | ||||
* | Close the "IRC DCC" security breach reported recently on Bugtraq. | ru | 2001-08-21 | 1 | -0/+6 |
| | | | | Submitted by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org> | ||||
* | Rebuild libcrypto.so.1 and libssl.so.1 from 4.2-RELEASE, but this time | peter | 2001-08-21 | 2 | -7413/+9224 |
| | | | | | | | | without the silly librsaINTL.so and/or librsaUSA.so dependencies. 4.2-RELEASE appears to be after the demolition of the librsa* stuff, so I'm not sure where ps got these binaries from. Anyway, this makes old binaries work again since we dont ship librsaINTL.so and/or librsaUSA.so in the compat dists. I believe RELENG_4 is affected still too. | ||||
* | Fix some style inconsistencies introduced in rev 1.10, as well as some | ken | 2001-08-21 | 1 | -34/+36 |
| | | | | | other inconsistencies that I missed in my review of rev 1.7. Also fix a cut-n-paste error from an earlier revision. | ||||
* | Make the copyright consistent. | brian | 2001-08-20 | 4 | -12/+0 |
| | | | | Previously approved by: Charles Mott <cmott@scientech.com> | ||||
* | Handle snprintf() returning < 0 (not just -1) | brian | 2001-08-20 | 1 | -1/+1 |
| | | | | MFC after: 2 weeks | ||||
* | Better snprintf() handling. | brian | 2001-08-20 | 1 | -38/+23 |
| | | | | Prompted by: bde | ||||
* | Handle snrintf overflows. | brian | 2001-08-20 | 1 | -0/+2 |
| | | | | Spotted by: bde | ||||
* | Mark some functions as __printflike() and/or taking const char * arguments | kris | 2001-08-20 | 11 | -10/+25 |
| | | | | | | instead of char *. MFC after: 2 weeks | ||||
* | Handle snprintf() returning -1. | brian | 2001-08-20 | 2 | -3/+6 |
| | | | | MFC after: 2 weeks | ||||
* | Add 'try_mapped_pass' standard option. | markm | 2001-08-20 | 3 | -2/+5 |
| | | | | Asked for by: lukeh@PADL.COM | ||||
* | Handle snprintf() returning -1 | brian | 2001-08-20 | 1 | -2/+2 |
| | | | | MFC after: 2 weeks | ||||
* | Handle snrintf() returning -1. | brian | 2001-08-20 | 1 | -16/+30 |
| | | | | MFC after: 2 weeks | ||||
* | Handle snprintf() returning -1 | brian | 2001-08-20 | 1 | -3/+13 |
| | | | | MFC after: 2 weeks | ||||
* | No functional changes, but: | markm | 2001-08-20 | 5 | -38/+47 |
| | | | | | | | | | o unifdef AUTHENTICATE. We have never compiled this code, and its doubtful it will even work in this case. o Style changes (some ansification, some comment updating) o Diff reduction and code style merging with crypto telnet. | ||||
* | Say goodbye to libss, which somehow managed to crouch hidden in the tree | kris | 2001-08-19 | 19 | -1541/+2 |
| | | | | for long after it was used. | ||||
* | Fix logic errors in pthread_cond_wait() and pthread_cond_timedwait() that | jasone | 2001-08-19 | 3 | -204/+156 |
| | | | | | | could cause deadlock after interruption due to a signal. Reviewed by: deischen | ||||
* | Add about rewind+errno, describe ESPIPE, minor formatting. | ache | 2001-08-19 | 1 | -6/+23 |
| | |||||
* | Implement compute_stats() in terms of devstat_compute_statistics(). This | ken | 2001-08-18 | 3 | -104/+41 |
| | | | | | | | | | | | gets rid of the duplicated code in compute_stats(). Add a new DSM_SKIP statistic type for devstat_compute_statistics() that causes the subsequent variable argument to be skipped. Thanks to Sergey Osokin for coding up my idea/code fragment. Submitted by: "Sergey A. Osokin" <osa@freebsd.org.ru> | ||||
* | Implement getpeereid(3), a front-end to the LOCAL_PEERCRED | dd | 2001-08-17 | 3 | -2/+191 |
| | | | | | | | socket option for the Unix domain. It's weaker than the socket option (this only returns the uid and gid, while the socket opt. can return the entire group list), and is implemented mostly for compatibility with OpenBSD. | ||||
* | Xref raise(3). | dd | 2001-08-17 | 1 | -0/+1 |
| | |||||
* | mdoc(7) police: collapse multiple spaces. | ru | 2001-08-17 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: fixed the fatal. | ru | 2001-08-17 | 1 | -1/+1 |
| | |||||
* | Simplify overflow calculations a bit | ache | 2001-08-17 | 1 | -4/+2 |
| | |||||
* | Remove extra check, already done in upper level caller, i.e. in | ache | 2001-08-17 | 1 | -5/+1 |
| | | | | _fseeko() | ||||
* | Mention ftell & ftello in EOVERFLOW section too. | ache | 2001-08-17 | 1 | -1/+5 |
| | |||||
* | Add more overflow checks in case of fseek() | ache | 2001-08-17 | 1 | -0/+8 |
| | |||||
* | Don't clear "we have offset" flag even if long is overflow for fseek(), | ache | 2001-08-17 | 1 | -1/+0 |
| | | | | there is no harm to have it, it will reduce next call efforts. | ||||
* | fseek.c: | ache | 2001-08-17 | 4 | -10/+36 |
| | | | | | | | | | | | | Resulting fseek() offset must fit in long, required by POSIX (pointed by bde), so add LONG_MAX and final tests for it. rewind.c: 1) add missing __sinit() as in fseek() it pretends to be. 2) use clearerr_unlocked() since we already lock stream before _fseeko() 3) don't zero errno at the end, it explicitely required by POSIX as the only one method to test rewind() error condition. 4) don't clearerr() if error happens in _fseeko() | ||||
* | mdoc(7) police: replace `\*(Ba' with a simple `|', it's handled specially. | ru | 2001-08-16 | 1 | -1/+1 |
| | |||||
* | Fix a bug in canceling joining threads. | jasone | 2001-08-16 | 9 | -6/+54 |
| | | | | | | | Do not detach canceled threads. Reported by: Arno Klaassen <arno@heho.snv.jussieu.fr> Collaboration with: deischen | ||||
* | If the string specifying the allowed options starts with a leading `:', | jkoshy | 2001-08-16 | 1 | -5/+2 |
| | | | | | | | | `getopt(3)' should not print a warning for missing argument values. PR: bin/29625 Reviewed by: mikeh MFC after: 1 week | ||||
* | Explain the relation of getchar() to getc() in less words. | dd | 2001-08-16 | 1 | -5/+1 |
| | | | | Submitted by: ru | ||||
* | Remove out-of-date "cannot be exported from USA" notice. | markm | 2001-08-15 | 1 | -2/+0 |
| | |||||
* | Use smarter overflow tests | ache | 2001-08-15 | 1 | -3/+6 |
| | | | | Suggested by: bde | ||||
* | Document the no_warn option. | markm | 2001-08-15 | 7 | -5/+40 |
| | |||||
* | Fix a couple of cross-references to reflect the reality of the module. | markm | 2001-08-15 | 2 | -4/+4 |
| | |||||
* | 1) Disallow negative seek as POSIX require for fseek{o} (but not for lseek): | ache | 2001-08-15 | 3 | -13/+45 |
| | | | | | | | | | | | | "[EINVAL] ... The resulting file-position indicator would be set to a negative value." Moreover, in real life negative seek in stdio cause EOF indicator cleared and not set again forever even if EOF returned. 2) Catch few possible off_t overflows. Reviewed by: arch discussion | ||||
* | Use the ".Rv" mdoc(7) macro where appropriate. | yar | 2001-08-14 | 6 | -39/+18 |
| | | | | Reviewed by: ru |