summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add ${MACROS} to ${ROFF} usage to make output readablepooka2003-01-052-4/+4
| | | from jbernard@mines.edu in misc/19685
* Correct some comments and error messages that still talked about "select".kristerw2002-12-291-10/+5
| | | Solves the last part of PR 18905.
* Fix a bug in rwait() introduced during the select() to poll() conversionjmmv2002-12-261-5/+6
| | | that caused tetris to crash when pausing the game. Approved by tron.
* fix confusion between east and west for y,u,b, and n.pooka2002-12-151-1/+1
| | | from Soren Jacobsen in misc/19397
* Need <stdlib.h> for abort() prototype.thorpej2002-12-061-2/+3
|
* Avoid strict alias warning.thorpej2002-12-061-3/+3
|
* Avoid confict with reserved identifier "expl".thorpej2002-12-064-24/+24
|
* Use more markup, and bump date for ppt's -d flag.wiz2002-11-291-4/+7
|
* Tweak the argc/argv usage a bit more, and be a little less eager aboutatatat2002-11-261-7/+11
| | | printing newlines.
* Don't skip the first arg.kim2002-11-261-4/+4
|
* initialize dflag to zero, so encoding works.kim2002-11-261-3/+5
|
* I forgot to compile first...kim2002-11-261-2/+4
|
* Add ppt decoding from Michael Shalayeff <mickey@lucifier.net>kim2002-11-262-19/+96
|
* Fix bogon in compat re code.christos2002-11-241-5/+7
|
* NetBSD - love all, serve all.hubertf2002-11-211-0/+3
| | | -- Silke Mueller
* fix duplicate limerick-o in CLEANFILESdrochner2002-10-221-2/+2
|
* avoid buffer overrun. fix from openbsd.itojun2002-10-181-3/+3
| | | reported by Niels Heinen <niels.heinen@ubizen.com>
* - use correctly bounded strings when reloading a saved game. in particular,mrg2002-10-014-27/+32
| | | | | | | do not let the save game file "string length" exceed the amount of space supplied. as noted by <stanojr@iserver.sk> on bugtraq. - minor KNF. tested by simonb.
* n-dashes are even better here. Noted by Robert Elz.wiz2002-09-301-3/+3
|
* Lots of minor fixes resulting from reading these man pages in detail.wiz2002-09-2631-223/+190
|
* Mdoc nits -- unneeded ".wiz2002-09-264-30/+30
|
* Ispell.wiz2002-09-266-17/+16
|
* New sentences begin on new lines.wiz2002-09-2623-531/+696
| | | Patch from Richard Elz, slightly improved by yours truly.
* Minor rearrangement.mycroft2002-09-202-6/+3
|
* Remove an unused declaration.mycroft2002-09-201-6/+2
|
* select() -> poll()mycroft2002-09-207-127/+103
| | | Also, turn off talk announcements; it's a wretched hack.
* If we're searching for a huntd, probe local_address along with broadcastmycroft2002-09-201-8/+9
| | | addresses.
* select() -> poll()mycroft2002-09-202-25/+21
|
* Slight redux.mycroft2002-09-191-6/+6
|
* select() -> poll()mycroft2002-09-191-4/+6
|
* select() -> poll(), nanosleep()mycroft2002-09-191-12/+10
|
* use NETBSDSRCDIR as appropriatelukem2002-09-191-3/+5
|
* some makefile de-lintinglukem2002-09-1810-23/+32
|
* need bsd.own.mk for NETBSDSRCDIRlukem2002-09-181-1/+3
|
* use NETBSDSRCDIR as appropriatelukem2002-09-182-5/+5
|
* shops are only supposed to have 1 door (as per standard hack 1.0.3).chuck2002-08-221-3/+3
| | | | | for some reason, the version of 1.0.3 that was in the 4.4 lite tree was modified to allow shops with two doors -- this violates the spirit of the game. with this diff, we revert back to classic 1.0.3 behavior.
* remove spurious ^A's and ||christos2002-08-201-3/+3
|
* calloc() arg mistake. it's (nelem, size). from openbsditojun2002-08-121-3/+3
|
* Remove unused variable "err".tron2002-08-061-3/+2
|
* fix regular expression matcher.dbj2002-08-061-7/+8
| | | the string "xc" was failing to match "x[[a|b]|c]"
* utmpx support.christos2002-08-022-14/+18
|
* sweep of errx/warnx, remove unnecessary trailing \ngrant2002-07-202-6/+6
|
* add the following quote from elric@.. (with permission, of course)grant2002-07-081-0/+4
| | | | | I held off from Uni until NetBSD came out. I decided, ``if there's no NetBSD then I'll just flip burgers'' -- Roland Dowdeswell
* Make "rogue" build with "WARNS=2". The necessary patches were suppliedtron2002-07-074-16/+17
| | | by David A. Holland in PR bin/17498.
* I was bored, so... simplify(?) this code a bit.mycroft2002-07-021-86/+64
|
* s/FOURTY/FORTY/dbj2002-07-021-2/+2
|
* backout previous (arc4random), per request from sommerfelditojun2002-07-011-8/+15
|
* use arc4randomitojun2002-07-011-15/+8
|
* Provide a BN_dec2bn() shim for the non-openssl case that reports an errorsimonb2002-06-181-3/+21
| | | if strtoul() fails.
* Fix a logic botch where if a number smaller than the square of the seivesimonb2002-06-171-12/+25
| | | | | | | | was prime to still called the Pollard Rho function when it didn't have to. Problem report by Nathan Williams. Unfortunately this one can't be picked up by a simple regression test since the broken way still produced the correct output, but just took far longer...