Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-08-12 | Swap args to calloc(3) so they are in the correct order; art@ ok. | Aaron Campbell | |
2002-08-09 | Get rid of remaining __P usage (except for imported code); | Jason Peel | |
ok millert@, rogue ok pjanzen@ | |||
2002-08-09 | Only target in the playing field when using mouse. | Paul Janzen | |
2002-08-09 | Fix an error in the CPU random fire routine that could cause a segfault. | Paul Janzen | |
2002-08-09 | Bug fix in random placement code from Erik Sigra. | Paul Janzen | |
2002-07-30 | Replace the "blows chunks" algorithm with pubeval, a public domain algorithm | Paul Janzen | |
which plays an acceptable, if not optimal, game. pubeval author approves. | |||
2002-07-30 | ansi wump, plus a more accurate comment | Paul Janzen | |
2002-07-30 | Kill buffer overflow. | Paul Janzen | |
2002-07-28 | Tidy the code, follow the rules more closely (and document where we diverge), | Paul Janzen | |
and make save files work. The last stops a number of segfaults. | |||
2002-07-26 | give it some healthy dosage of vitamin const | Michael Shalayeff | |
2002-07-26 | put to the -Wall an unused variable | Michael Shalayeff | |
2002-07-26 | The elusive original author of this program and man page surfaced long enough | Paul Janzen | |
to state the following, when asked about licensing issues: "It's ok to put any copyright as long as it stays in the public domain. ... Since I did not write it to make any profit or fame in the first place, I guess its use is not limited by any license. Of course I would not object to my name being mentioned." Then he disappeared again. So I've put on a current copyright to him, and labelled the code explicitly as public domain. | |||
2002-07-26 | add classic mode, closer to the way tetris felt a couple decades ago; ↵ | Michael Shalayeff | |
pjanzen@ ok | |||
2002-07-26 | \a rather than embedded ^G | Paul Janzen | |
2002-07-26 | Theo pointed out a vsnprintf() whose return value was being used | Paul Janzen | |
inappropriately. | |||
2002-07-26 | A few better buffer sizes (from Ian McWilliam, long ago); functions local | Paul Janzen | |
to save.c are no longer in rogue.h; use write() to save files rather than fwrite() since this can end up being called in a signal handler (it's still not clean though). | |||
2002-07-26 | indent | Paul Janzen | |
2002-07-26 | We're in curses, so use getch() rather than getchar(). | Paul Janzen | |
2002-07-18 | - string handling patch from David Holland, minimally modified. Highlights | Paul Janzen | |
are fewer magic constants, sprintf->snprintf, and better scorefile handling. Also, won't hang if forking a subshell fails. - a few needless functions have been trimmed, and a few extra defaults have been added to a few switches, just in case. | |||
2002-06-23 | uid_t and gid_t are unsigned | Theo de Raadt | |
2002-06-14 | spelling; from Brian Poole <raj@cerias.purdue.edu> | Todd T. Fries | |
2002-06-11 | no more err(3) newlines in games; ok pjanzen@ | Jason Peel | |
2002-05-31 | de-auto | Paul Janzen | |
2002-05-31 | crmode -> cbreak | Paul Janzen | |
2002-05-31 | de-register | Paul Janzen | |
2002-05-31 | No dm -> games with high score files etc. must explicitly be setgid games. | Paul Janzen | |
2002-05-31 | No dm -> no need to revoke setegid. | Paul Janzen | |
2002-05-24 | fix name, ok deraadt | Peter Stromberg | |
2002-05-23 | The troll strikes.. The troll strikes.. The dungeon master ↵ | Theo de Raadt | |
dies.distrib/sets/lists | |||
2002-05-11 | Add missing libraries to bsd.prog.mk (mostly kerberosV) | Marc Espie | |
Use them in DPADD throughout the tree. Fix a few mispells (LIBMATH -> LIBM...) Wipe obsolete lib (LIBRESOLV) Sort added missing libraries, move obsolete stuff apart. Synch documentation in bsd.README ok deraadt@ | |||
2002-05-06 | do not install a SIGSEGV handler | Todd C. Miller | |
2002-04-20 | machine/limits.h is not userland. Use limits.h | Marc Espie | |
ok millert@ | |||
2002-04-02 | sync with reality; Sam Smith <S@mSmith.net> | Paul Janzen | |
2002-02-25 | fix buffer overflow in scanf; found by pjanzen | Peter Valchev | |
2002-02-25 | handle EOF gracefully; ok pjanzen | Peter Valchev | |
2002-02-24 | getchar fixes; ok pjanzen | Peter Valchev | |
2002-02-19 | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | Todd C. Miller | |
2002-02-18 | more signed char issues | Theo de Raadt | |
2002-02-18 | someone should read compiler messages on the powerpc | Theo de Raadt | |
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | abs() is defined by ANSI C -- don't use a macro for it | Todd C. Miller | |
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2002-01-16 | Use the volatile specifier to fix warnings about variables being | Todd C. Miller | |
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack. | |||
2002-01-07 | To disable a SIGCHLD signal handler use SIG_DFL, *not* SIG_IGN | Todd C. Miller | |
which now has a different meaning. | |||
2002-01-04 | Don't longjmp(..., 0) | Artur Grabowski | |
2001-11-19 | mark signal race, fix half of it | Theo de Raadt | |
2001-11-18 | move racey shit out of signal handler | Theo de Raadt | |
2001-11-17 | move gunk out of signal handlers, now safe | Theo de Raadt | |
2001-11-17 | Always update the piles before checking score. | Paul Janzen | |
2001-11-17 | fixes based on ones suggested by mpech@prosoft.org.lv | Paul Janzen | |