Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-17 | remove setgid flag. | Ted Unangst | |
in turn, move score files into user's home directory. will let theo buehler continue with a smaller pledge set. | |||
2015-11-15 | fix a double space issue in the following, rather wonderful, fortune: | Jason McIntyre | |
On two occasions I have been asked [by members of Parliament!], `Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question. -- Charles Babbage | |||
2015-11-11 | creat() -> open equiv; from Frederic Nowak | Theo de Raadt | |
2015-11-10 | another open(path, 0)... | Theo de Raadt | |
2015-11-10 | pledge "stdio rpath" at the top. (Ricardo's 2nd chunk which reduces | Theo de Raadt | |
further is not placed right, so I ignored it for now) from Ricardo Mestre | |||
2015-11-10 | replace open(path, 0) with open(path, O_RDONLY). amazing to still find | Theo de Raadt | |
sloppiness like this. | |||
2015-11-05 | delete unused code that won't let you play if the load is too high | Ted Unangst | |
2015-11-05 | ctype functions take unsigned char values. | Philip Guenther | |
Fix redrawing of the challenge cube (-c option) when <esc>word is used. ok mmcc@ | |||
2015-11-04 | replace setbuf with setvbuf, from Frederic Nowak | Ted Unangst | |
2015-10-25 | just dump the help on stdout with messing about with a pager. | Ted Unangst | |
makes pledge much simpler. from jan stary | |||
2015-10-24 | Cast toupper()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isdigit()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isdigit()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast islower()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isprint()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast toupper()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isdigit()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isalpha()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isblank()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isdigit()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast isblank()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast toupper()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast islower()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast islower()'s argument to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-24 | Cast ctype functions' arguments to unsigned char. | mmcc | |
ok guenther@ | |||
2015-10-23 | include err.h for err() calls added with recent pledge commits. | Jonathan Gray | |
2015-10-22 | Pledge "stdio rpath tty" for hangman(6). | Doug Hogan | |
Patch submitted by Ricardo Mestre <serial@helheim.mooo.com> ok semarie@ | |||
2015-10-16 | Disable !-command to escape to a shell. You are supposed to play, press | Tobias Stoeckmann | |
^Z, or open up another terminal if there is something else to do. ok deraadt | |||
2015-10-14 | Pledge "stdio" for simple games. | Doug Hogan | |
ok semarie@ | |||
2015-10-14 | enable pledge(2) in rain(6) | Sebastien Marie | |
it is libcurses program: at init it needs "stdio rpath getpw tty", and after drop to just "stdio tty". "tty" is needed at end for restoring the tty. initial patch from doug@ ok doug@ deraadt@ | |||
2015-10-10 | Pledge that arithmetic only takes "stdio". | Doug Hogan | |
2015-09-27 | Delete pointless NOSTRICT comments | Philip Guenther | |
2015-09-27 | Make prompt() properly printf-like, eliminating empty dummy args | Philip Guenther | |
2015-09-27 | Annotate funcs with __attribute__((printf(...))) and clean up the fallout: | Philip Guenther | |
* lots of foo(str) --> foo("%s", str) transformations * one totally insane foo(fmt, ap) --> vfoo(fmt, ap) conversion: how did this ever work? * prefer const char[] over char* for static format strings, as it lets gcc check the format and eliminates an unnecessary pointer ok beck@ |