summaryrefslogtreecommitdiff
path: root/sys/arch/pmax/stand/smallnet/Makefile
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2023-07-09 10:42:07 +0000
committerrillig <rillig@NetBSD.org>2023-07-09 10:42:07 +0000
commit61a832267cc5bff1a90f086bd56309a3a0671255 (patch)
tree6f663ed82c04970fa2f72561dc8eb6681e5f29fe /sys/arch/pmax/stand/smallnet/Makefile
parentb2782b14a8e5066f0436d79a391ce49f9e782b76 (diff)
lint: remove redundant '#' after 'argument' in diagnosticsHEADtrunk
Diffstat (limited to 'sys/arch/pmax/stand/smallnet/Makefile')
0 files changed, 0 insertions, 0 deletions
ss='logheader'>2007-05-28Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on thetls FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to various string and memory copy and set functions (as well as a few system calls and other miscellany) where known at function entry. RedHat has evidently built all "core system packages" with this option for some time. This option should be used at the top of Makefiles (or Makefile.inc where this is used for subdirectories) but after any setting of LIB. This is only useful for userland code, and cannot be used in libc or in any code which includes the libc internals, because it overrides certain libc functions with macros. Some effort has been made to make USE_FORT=yes work correctly for a full-system build by having the bsd.sys.mk logic disable the feature where it should not be used (libc, libssp iteself, the kernel) but no attempt has been made to build the entire system with USE_FORT and doing so will doubtless expose numerous bugs and misfeatures. Adjust the system build so that all programs and libraries that are setuid, directly handle network data (including serial comm data), perform authentication, or appear likely to have (or have a history of having) data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default, with the exception of libc, which cannot use USE_FORT and thus uses only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no per-directory or in a system build will disable if desired. 2006-10-28catch up with new location for rmd160.h header fileagc 2005-12-05fix lint warning (assignment in conditional context)christos 2005-09-25Use crypto/rmd160.h.elad 2005-02-04de-__Pperry 2005-02-04remove a spurious space in a function declarationperry 2005-02-04de-__P, slightly KNF, and make a bit of the formatting more consistent.perry 2004-10-28Use (unsigned char) cast to sanitise arguments to ctype functions.dsl 2004-10-27Fix a load of international alphabet problems with isxxx() and toupper()dsl Change isspace(*char_ptr) to isspace(*char_ptr & 0xff) so that the correct piece of memory is looked at for the bit mask. gcc optimises out the '& 0xff' (on i386 at least). Fixes problems found by gcc when the splurious (int) cast is removed from the #defines in ctype.h 2003-06-06Grammar, spelling, markup fixes from jmc@openbsd.wiz 2003-04-16Usewiz .In header.h instead of .Fd #include \*[Lt]header.h\*[Gt] Much easier to read and write, and supported by groff for ages. Okayed by ross. 2003-03-09use __RCSID()lukem 2003-01-03Use \-1 instead of -1.wiz 2003-01-03repsonse -> response (from PR 19649)mjl 2002-10-01New sentence, new line. From Robert Elz.wiz 2002-06-23use strtok_r, as strtok can interfere with outside users.itojun 2002-06-22use strtok_r, as strtok can interfere with other callers. from openbsditojun 2002-02-07Generate <>& symbolically.ross 2001-11-10Misc. improvements, sort SEE ALSO.wiz 2001-11-10Add and install skey(3).gmcgarry 2001-07-24s/necesary/necessary/wiz 2001-04-06Negative exit code cleanup: Replace exit(-x) with exit(x).wiz As seen on tech-userlevel. 2001-03-12Revert minor to 0 since there is no abi change on request of thorpej.mjl 2001-03-11Fix incorrect SHA1 calculation on big endian machines reportedmjl in PR/12045 by John Valdes, who also provided the problem's solution and a patch. XXX This problem could have been caught about a year ago if we XXX just ran the regression tests on every build! 2000-07-28skey_keyinfo() returns a pointer to a static buffer, sothorpej const'ify it. 2000-07-11Correct ctype(3) usage.itohy Passing "char" value is wrong. Use "unsigned char" instead. 2000-07-08size_t != unsigned int; from Motoyuki Konno in PR lib/10538.kleink 2000-07-06Bring s/key closer to RFC2289 conformance by pulling in changesmjl from OpenBSD to make use of different hash functions possible. Also factored out some common code pieces, ANSIfied and corrected SHA1 hash to make the result match up with the regression examples in above RFC. 2000-04-13In skeyverify(), don't "restore" priority to 0, but restore it to theis previous priority. If we can't read the previous priority, leave it alone. By Chris Jones, PR 4891.