]> git.cameronkatri.com Git - bsdgames-darwin.git/shortlog
bsdgames-darwin.git
2015-02-19 mrgadd a 'down' key to tetris, defaulting to 'n'. it...
2015-02-12 dhollandtypo
2015-02-07 wizFix typo. From kspillner@OpenBSD, forwarded by jmc...
2015-01-06 dhollandadd something
2014-12-29 jnemethPR/49513 - Henning Petersen -- tyop
2014-12-29 jnemethPR/49513 - Henning Petersen -- tyop
2014-12-05 jnemethPR/49451 - Ben Gergely -- add missing attribution
2014-10-18 snjEnglish
2014-10-18 snj1) "It's its"
2014-10-04 wizusage police
2014-10-02 astImported and adapted from FreeBSD svn r272166 and r2722...
2014-09-30 christosadhere to stricter groff checking:
2014-09-19 wizSort sections. From Henning Petersen in PR 49222.
2014-07-15 wizBump date for -c (exactly one year after previous bump)
2014-07-13 pgoyetteAt suggestion of christos@, use -b for b&w rather than -c
2014-07-13 pgoyetteProvide an option to restore traditional black-and...
2014-07-05 dhollandReorg docs, part 1:
2014-07-05 dhollandRework /usr/share/doc.
2014-06-14 mrgremove remaining makefile support for GCC < 45 that...
2014-06-11 christosAdd a little color. In order to minimize logic differen...
2014-03-30 skrllRemove unused.
2014-03-30 dhollandUse bool (not int) for a boolean return type.
2014-03-30 dhollandUse the curses beep function instead of writing a beep...
2014-03-30 dhollandcurses has printw, use it.
2014-03-30 dhollanddon't use the preprocessor to rename curses functions...
2014-03-30 dhollandfix off-by-one
2014-03-30 dhollandInstead of #define STDIN 0, use STDIN_FILENO.
2014-03-30 dhollandRemove SHORTLEN and LONGLEN defines; use sizeof() prope...
2014-03-30 dhollandNaming reform for socket pieces, akin to what I did...
2014-03-30 dhollandI wish the socket API didn't require casts. Easy to...
2014-03-30 dhollandfix obvious mistake (seems to have been there since...
2014-03-30 dhollandTidy up list of broadcast addresses.
2014-03-30 dhollandClean up the handling of the list of hunt daemons.
2014-03-30 dhollanduse fewer globals
2014-03-30 dhollandmore cleanup
2014-03-30 dhollandunexpose some globals that server.c previously required
2014-03-30 dhollandname reform, fewer file statics
2014-03-30 dhollandgoto considered harmful
2014-03-30 dhollandsplit off a bunch of the nastier network code into...
2014-03-30 dhollandWhen indexing an array with a char, cast it to unsigned...
2014-03-30 dhollandRemove all the conditional compilation for INTERNET...
2014-03-30 dhollandClean up the names of the various pieces of socket...
2014-03-29 dhollandfix non-INTERNET build
2014-03-29 dhollandEr oops, fix previous.
2014-03-29 dhollandReduce ifdefs by making a common function to talk to...
2014-03-29 dhollandgroup external functions by where they come from
2014-03-29 dhollandbe consistent about whether functions are static
2014-03-29 dhollandhandle compiled-in pathnames the customary way
2014-03-29 dhollandmake some globals static
2014-03-29 dhollandAdditional minor cleanup and remove a straggler data...
2014-03-29 dhollandGroup function declarations by which source file they...
2014-03-29 dhollandbe consistent about whether functions are static
2014-03-29 dhollandsprinkle static
2014-03-29 dhollandFlush unwanted file.
2014-03-29 dhollandMove definitions to the file they're used in.
2014-03-29 dhollandmove a comment that should have gone with its symbol
2014-03-29 dhollandRemove tautological #if DEBUG.
2014-03-29 dhollandSplit hunt and huntd's includes, instead of incestuousl...
2014-03-29 dhollandRemove unsafe and unnecessary pointer casts.
2014-03-29 dhollandcatch up to huntd changes.
2014-03-29 dhollandtsort contents of file
2014-03-29 dhollandconst in unused code
2014-03-29 dhollandremove stubbed-out function
2014-03-29 dhollandRip out the code that broadcasts talk requests to the...
2014-03-29 dhollandRemove empty header file.
2014-03-29 dhollandUse setproctitle() instead of handrolled version.
2014-03-29 dhollandMake the code for issuing talk requests to find players...
2014-03-29 dhollanddon't declare own boolean type
2014-03-29 dhollanduse random(), not a handrolled 16-bit generator
2014-03-29 dhollandUse getaddrinfo() instead of gethostbyname().
2014-03-29 dhollandtypo in error message
2014-03-29 dhollandconst
2014-03-29 dhollandsimplify silly logic
2014-03-28 apbtemp is a pointer, and tempmax, not sizeof(temp), is...
2014-03-28 apbIf you are going to use memcpy instead of struct assign...
2014-03-23 dhollandAdd note cautioning against bothering with WARNS=6...
2014-03-23 dhollandfix signedness issue
2014-03-23 dhollandgratuitous (but not harmful) changes to pass gcc48...
2014-03-22 dhollandUse ssize_t for read() results. Don't use int for lseek...
2014-03-22 dhollandUse ssize_t for read() results. Don't use int for lseek...
2014-03-22 dhollandUse uid_t to hold getuid() results, and don't check...
2014-03-22 dhollanduse size_t instead of int for a length
2014-03-22 dhollandUse random(), not rand().
2014-03-22 dhollandavoid unnecessary floating point ops
2014-03-22 dhollandavoid signed left-shift
2014-03-22 dhollandUse CHAR_BIT, not 8.
2014-03-22 dhollanddon't declare ospeed; it's in <termcap.h>
2014-03-22 dhollandMake the list of place types an enumeration. Use unsign...
2014-03-22 dhollanduse a more suitable type
2014-03-22 dhollanduse more suitable types
2014-03-22 dhollandwoops, more of previous.
2014-03-22 dhollandMake some things unsigned that should be (why would...
2014-03-22 dhollandDon't cast the return value of malloc.
2014-03-22 dhollandMinor tidyup.
2014-03-22 dhollandtag decl() __noinline, as inlining it would defeat...
2014-03-22 dhollandRevert part of previous -r1.21 and fix the errno-handli...
2014-03-22 dhollandmove extern decls to .h files
2014-03-18 riastradhMerge riastradh-drm2 to HEAD.
2014-02-22 dhollandfix typo, from Henning Petersen in PR misc/48613
2013-12-11 dhollandremove duplicate
next