summaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Merge in latest CSRG revisions:ru2001-04-095-40/+72
| | | | | | | | | | - .Fn and .Fc now print a final semicolon (`;') after a function declaration in the SYNOPSIS - .%I implemented - .At outputs ``AT&T UNIX'' if called without arguments - minor cleanup Obtained from: CSRG archives
* Clean up telnet's argument processing a bit. autologin and encryption isnsayer2001-04-062-34/+23
| | | | | | | now the default, so ignore the arguments that turn it on. Add a new -y argument to turn off encryption in case someone wants to do that. Sync these changes with the man page (including removing the now obsolete statement about availability only in the US and Canada).
* Do not log every potential exploit attempt since a denial-of-servicejedgar2001-04-061-10/+1
| | | | may result.
* - Correct off-by-one error and buffer underflow from previous fixjedgar2001-04-061-5/+5
| | | | | | - int -> unsigned char fixes Submitted by: ache, dillon, Mark Andrews, et.al. (on -security)
* Reactivate SRA.nsayer2001-04-051-0/+18
| | | | | Make handling of SIGINT and SIGQUIT follow SIGTSTP in TerminalNewMode(). This allows people to break out of SRA authentication if they wish to.
* Record -lposix1e death.ru2001-04-051-1/+0
|
* Fix a potential ROOT-exploit in NTPD.phk2001-04-041-1/+18
| | | | | PR: 26358 Reviewed by: dima
* This commit was generated by cvs2svn to compensate for changes in r75147,fenner2001-04-041-1/+1
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Check in the diff for rev 1.11 of tcpdump.org's print-smb.cfenner2001-04-041-1/+1
| | | | | | | | to replace freebsd.org's rev 1.2.
* | Merge tcpdump 3.6.2fenner2001-04-0331-1606/+3253
| |
* | This commit was generated by cvs2svn to compensate for changes in r75115,fenner2001-04-03118-2910/+10356
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of tcpdump.org tcpdump v3.6.2fenner2001-04-03151-4461/+14070
| |
* | Merge libpcap 0.6.2fenner2001-04-0311-277/+982
| |
* | This commit was generated by cvs2svn to compensate for changes in r75107,fenner2001-04-0339-1046/+5096
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Virgin import of tcpdump.org libpcap v0.6.2fenner2001-04-0351-1317/+6213
| | |
* | | Consistently space the output.obrien2001-03-311-5/+5
| | |
* | | Change "*coff*" to "coff*" so that the pattern will not dike out xcoffsolib.h.obrien2001-03-301-1/+1
| | | | | | | | | | | | I'll revisit the pattern on the next import.
* | | Forgot to update this README when I imported 8.11.3gshapiro2001-03-301-4/+4
| | |
* | | Remove these MD files that we've never needed.obrien2001-03-301-209/+0
| | |
* | | Remove this auto-generated file (and isn't part of 5.0 as it shouldn't be).obrien2001-03-301-182/+0
| | |
* | | Remove these GDB 4.18 docs that did not make it into 5.0.obrien2001-03-303-1869/+0
| | |
* | | Remove this GDB 4.18 file that is no longer part of GDB [5.0].obrien2001-03-291-17/+0
| | |
* | | Update for file 3.34.obrien2001-03-251-4/+5
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r74784,obrien2001-03-2528-129/+773
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Virgin import of Christos Zoulas's FILE 3.34.obrien2001-03-2528-129/+773
| | | |
| * | | This commit was manufactured by cvs2svn to create branch 'VENDOR-file'.cvs2svn2000-11-261-0/+18
| | | |
* | | | List of distfile contents to delete using `rm' and `find -delete'.obrien2001-03-241-0/+71
| | | | | | | | | | | | | | | | | | | | | | | | Simular to the FREEBSD-Xlist used with `tar -X ... -xf'. This file is typically used when one starts with the GDB anoncvs repo rather than a release tarball.
* | | | This commit was generated by cvs2svn to compensate for changes in r74722,obrien2001-03-244-72/+140
|\ \ \ \ | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Import the setjump/longjump exception handling fixes from GCC 2.95.3.test3obrien2001-03-244-72/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that were removed from GCC 2.95.3.test4 and the subsequent release due to problems on HP-UX. However, they work just fine on all the BSD's. W/o these patches the following program segmentation faults if compiled with -O2 (but not -Os or -O or -O0): #include <stdio.h> class A { public: A() { printf("c'tor A\n"); } ~A(){ printf("d'tor A\n"); } }; class foo : public A { public: foo() { printf("C'tor foo\n"); throw 8; } ~foo() { printf("D'tor foo\n"); } }; int main(){ try { foo fii; } catch (int){ printf("catch ...\n"); } return 0; }
* | | | | Don't attempt to parse %cache2001-03-211-4/+27
| | | | |
* | | | | This commit was generated by cvs2svn to compensate for changes in r74485,obrien2001-03-192-4/+11
|\ \ \ \ \ | |/ / / / | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Virgin import of GCC 2.95.3's libobjcobrien2001-03-192-4/+11
| | | | |
* | | | | This commit was generated by cvs2svn to compensate for changes in r74483,obrien2001-03-197-246/+396
|\ \ \ \ \ | |/ / / / | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Virgin import of GCC 2.95.3's libstdc++obrien2001-03-197-246/+396
| | | | |
* | | | | This commit was generated by cvs2svn to compensate for changes in r74481,obrien2001-03-1911-38/+95
|\ \ \ \ \ | |/ / / / | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Virgin import of GCC 2.95.3's libio -- the C++ iostream facility.obrien2001-03-1911-38/+95
| | | | |
* | | | | Remove some files that are no longer in the FSF branch.obrien2001-03-191-26/+0
| | | | |
* | | | | Merge gcc-2.95.3 changes onto mainline. Update FreeBSD changes to convergeobrien2001-03-1910-2670/+172
| | | | | | | | | | | | | | | | | | | | with changes made in the FSF tree.
* | | | | This commit was generated by cvs2svn to compensate for changes in r74473,obrien2001-03-1910-151/+119
|\ \ \ \ \ | |/ / / / | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Virgin import of the GCC 2.95.3 compilersobrien2001-03-1913-154/+122
| | | | |
* | | | | Fix core noted in -stable with 'auth disable SRA'.nsayer2001-03-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | I just mistakenly commited this to RELENG_4. I have contacted Jordan to see about how to fix this. Pass the pointy hat.
* | | | | .St macro cleanup:ru2001-03-121-25/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - spell the abbreviation of 1003.1 as ``POSIX.1'' - fixed the description of -p1003.1-90; it was sold as ISO/IEC 9945-1:1990 - removed -p1003.1b; it only existed as 1003.1b-1993 (-p1003.1b-93), and is part of 1003.1 since 1003.1-1996. - replaced -p1003.1g (project) with -p1003.1g-2000 (approved draft) - changed abbreviation of -isoC from ``ISO C'' to ``ISO C89'' - removed -iso9899 alias for -isoC - IEC was missing from some names - added abbreviation for -susv2 (``SUSv2'')
* | | | | enable auto-negotiation of encrypt and decryptassar2001-03-121-0/+13
| | | | |
* | | | | This commit was generated by cvs2svn to compensate for changes in r73569,kris2001-03-052-2/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | Import patch to fix non-constant format string abuses. This patch waskris2001-03-052-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | approved by the vendor and will be present in future releases.
* | | | | | This commit was generated by cvs2svn to compensate for changes in r73393,kris2001-03-032-16/+35
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | | | Import vendor fix for buffer overflow in HOME environment variablekris2001-03-032-16/+35
| | | | | | |
* | | | | | | setlocale(3) has been fixed to match POSIX standard:ru2001-03-024-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | LC_ALL takes precedence over other LC_* envariables.
* | | | | | | Change "NO_PROFILE_DATA" to "NO_PROFILE_COUNTERS" to match the commit byobrien2001-03-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the FSF/GCC people in the stock 2.97 source that is like our custom change modulo the conditional compilation symbol.
* | | | | | | Move the obvious bits of mixed ELF and a.out support down into this MDobrien2001-03-021-0/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | header to reduce the difference of our sources to the stock GNU/FSF ones. While the mix binary format support was nice to have in the FreeBSD MI header as a frame work, it just clutters up too much and makes the FreeBSD MI header more different from the FSF/GNU stock one than it needs to be.
OpenPOWER on IntegriCloud