Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-26 | Fix the logic so that transition from a 256 colour to default works properly. | Nicholas Marriott | |
2009-12-26 | Nuke some stray debugging. | Nicholas Marriott | |
2009-12-25 | validate routing domain is in range 0-RT_TABLEID_MAX. | Kevin Steves | |
'Looks right' deraadt@ | |||
2009-12-24 | Use sysctl() KERN_PROC2 instead of KERN_PROC, as the latter's ABI | Philip Guenthe | |
is sensitive to changes in struct proc. fixes for warnings and ok nicm@ | |||
2009-12-24 | sync to 1.9.14: rewrite escape sequence handling: | Ingo Schwarze | |
- new function a2roffdeco - font modes (\f) only affect the current stack point - implement scaling (\s) - implement space suppression (\c) - implement non-breaking space (\~) in -Tascii - many manual improvements | |||
2009-12-23 | sync to 1.9.13: minor fixes: | Ingo Schwarze | |
correctness/functionality: - bugfix: properly ignore lines with only a dot in -man - bugfix: .Bl -ohang doesn't allow -width, warn about this - improve date string handling by new function mandoc_a2time - some HTML improvements - significant documentation additions in man.7 and mdoc.7 portability: - replace __dead by __attribute__((noreturn)) - bugfix: correct .Dx rendering - some more library names for NetBSD simplicity: - replace hand-rolled putchar(3)-loops by fwrite(3) - replace single-character printf(3) by putchar(3) | |||
2009-12-23 | partion -> partition. First one (mkfs.c) noted by Brad Tilley on tech@. | Kenneth R Westerback | |
2009-12-22 | sync to 1.9.12, mostly portability and refactoring: | Ingo Schwarze | |
correctness/functionality: - bugfix: do not die when overstep hits the right margin - new option: -fign-escape - and various HTML features portability: - replace bzero(3) by memset(3), which is ANSI C - replace err(3)/warn(3) by perror(3)/exit(3), which is ANSI C - iuse argv[0] instead of __progname - add time.h to various files for FreeBSD compilation simplicity: - do not allocate header/footer data dynamically in *_term.c - provide and use malloc frontends that error out on failure for full changelogs, see http://bsd.lv/cgi-bin/cvsweb.cgi/ | |||
2009-12-22 | implement -C (silent -c), required by POSIX.1-2008; | Ingo Schwarze | |
patch from Daniel Dickman <didickman at gmail dot com> tweaked by me; "looks ok" millert@, manual help and ok jmc@ | |||
2009-12-22 | add `1' to the interactive command list too; from Mark Lumsden | Jason McIntyre | |
2009-12-22 | add -1 to show_help(); from Mark Lumsden | Jason McIntyre | |
2009-12-22 | Fix a couple of problems with grouped sessions reported by danh: redraw | Nicholas Marriott | |
properly and choose the correct last window after a window is killed. | |||
2009-12-20 | fix an incorrect magic number and typo in PROTOCOL; bz#1688 | Damien Miller | |
report and fix from ueno AT unixuser.org | |||
2009-12-20 | Use the standard wording, requested by jmc@. | Ingo Schwarze | |
Actually, this is much closer to the original submission by Daniel Dickmann. | |||
2009-12-20 | find -LH was -L, but must be -H according to POSIX; | Ingo Schwarze | |
patch from Daniel Dickman <didickman at gmail dot com> via tech@, though i'm updating the manual in a different way; ok millert@ "looks good" deraadt@ | |||
2009-12-20 | When passing user-controlled options with arguments to other programs, | Philip Guenthe | |
pass the option and option argument as separate argv entries and not smashed into one (e.g., as -l foo and not -lfoo). Also, always pass a "--" argument to stop option parsing, so that a positional argument that starts with a '-' isn't treated as an option. This fixes some error cases as well as the handling of hostnames and filenames that start with a '-'. Based on a diff by halex@ ok halex@ djm@ deraadt@ | |||
2009-12-19 | try to clarify ChrootDirectory pathname argument a bit; resulting from | Kevin Steves | |
a question on openssh-unix-dev. ok jmc@ | |||
2009-12-17 | Update from master repo. Many bugfixes + significant speedyps. | Anders Magnusson | |
2009-12-17 | Allow keys to be replaced and reorder the table so that terminfo-defined keys | Nicholas Marriott | |
(or terminal-overrides) take precedence over internally defined. | |||
2009-12-14 | Pass through the aixterm bright colours if the terminal supports them (>= 16 | Nicholas Marriott | |
colours). | |||
2009-12-14 | Add server options to completion as well. | Nicholas Marriott | |
2009-12-14 | New server option, escape-time, to set the timeout used to detect if escapes | Nicholas Marriott | |
are alone or part of a function key or meta sequence. | |||
2009-12-13 | spacing, no binary change. | Igor Sobrado | |
2009-12-12 | Nuke useless ancient documentation. ok deraadt | Nicholas Marriott | |
2009-12-12 | Whoops, missed these. | Nicholas Marriott | |
2009-12-12 | tip is not setuid or setgid anymore and there are no PRIV/EXPR commands, so | Nicholas Marriott | |
remove the code. ok deraadt | |||
2009-12-12 | when parsing .wav headers, check if rate <= RATE_MAX (instead of | Alexandre Ratchov | |
rate < RATE_MAX). Similarly check if bits <= 32 (instead of bits < 32) | |||
2009-12-12 | Use a socketpair instead of a pair of pipes. | Nicholas Marriott | |
looks ok to millert@ | |||
2009-12-11 | switch from 35 to the more common value of RSA_F4 == (2**16)+1 == 65537 | Markus Friedl | |
for the RSA public exponent; discussed with provos; ok djm@ | |||
2009-12-11 | try not to use size_t in places it does not belong; ok djm | Theo de Raadt | |
2009-12-11 | Use quiet variable, and add missing sentinel to options array. | Nicholas Marriott | |
2009-12-10 | careless fscanf, found by parfait, ok jsg | Theo de Raadt | |
2009-12-10 | memory leak, found by parfait, ok jsg | Theo de Raadt | |
2009-12-10 | better wording for 1 option from jmc | Ted Unangst | |
2009-12-10 | add an option '1' to display all cpu stats combined. helps save space | Ted Unangst | |
with increasing processor counts. ok deraadt (kettenis otto) | |||
2009-12-10 | Add "server options" which are server-wide and not bound to a session or | Nicholas Marriott | |
window. Set and displayed with "set -s" and "show -s". Currently the only option is "quiet" (like command-line -q, allowing it to be set from .tmux.conf), but others will come along. | |||
2009-12-10 | Eliminate the confusing term "find codes database" which is used nowhere else. | Ingo Schwarze | |
It made people miss the fact we are just talking about /var/db/locate.database. Expicitely say that output will be sent to that file. Problem noted by, feedback and OK jmc@. | |||
2009-12-09 | We only need to fchdir(dotfd) for the -exec and -ok primaries so | Todd C. Miller | |
defer the check for dotfd != -1 until we know we will need it. Based on a diff from schwarze@ | |||
2009-12-08 | Permit panes to be referred to as "top", "bottom", "top-left" etc, if the right | Nicholas Marriott | |
pane can be identified. | |||
2009-12-07 | update to sudo 1.7.2p2 | Todd C. Miller | |
2009-12-07 | behaviour for the -l flag differs between this implementation and posix; | Jason McIntyre | |
spotted by millert | |||
2009-12-06 | fix potential divide-by-zero in sftp's "df" output when talking to a server | Darren Tucker | |
that reports zero files on the filesystem (Unix filesystems always have at least the root inode). From Steve McClellan at radisys, ok djm@ | |||
2009-12-06 | use socklen_t for getsockopt optlen parameter; reported by | Damien Miller | |
Steve.McClellan AT radisys.com, ok dtucker@ | |||
2009-12-06 | zap unused variable and strlen; from Steve McClellan, ok djm | Darren Tucker | |
2009-12-04 | vte is buggy and doesn't home the cursor after changing the scroll | Nicholas Marriott | |
region. Several people are hitting this, so add a workaround. | |||
2009-12-04 | Do not write 16bit values directly to odd addresses - strict alignment | Claudio Jeker | |
architectures don't like that. Makes cd blanking on sparc64 possible. OK deraadt@, krw@, jasper@ | |||
2009-12-03 | Wrap at 80 columns. | Nicholas Marriott | |
2009-12-03 | Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last | Nicholas Marriott | |
time now I've configured emacs to make them displayed in really annoying colours... | |||
2009-12-03 | Eliminate duplicate code and ease the passage for server-wide options by adding | Nicholas Marriott | |
a -w flag to set-option and show-options and making setw and showw aliases to set -w and show -w. Note: setw and showw are still there, but now aliases for set -w and show -w. | |||
2009-12-02 | Reflect the keypad mode of the application so that numlock works. | Nicholas Marriott | |