summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2009-12-26Fix the logic so that transition from a 256 colour to default works properly.Nicholas Marriott
2009-12-26Nuke some stray debugging.Nicholas Marriott
2009-12-25validate routing domain is in range 0-RT_TABLEID_MAX.Kevin Steves
'Looks right' deraadt@
2009-12-24Use sysctl() KERN_PROC2 instead of KERN_PROC, as the latter's ABIPhilip Guenthe
is sensitive to changes in struct proc. fixes for warnings and ok nicm@
2009-12-24sync 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-23sync 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-23partion -> partition. First one (mkfs.c) noted by Brad Tilley on tech@.Kenneth R Westerback
2009-12-22sync 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-22implement -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-22add `1' to the interactive command list too; from Mark LumsdenJason McIntyre
2009-12-22add -1 to show_help(); from Mark LumsdenJason McIntyre
2009-12-22Fix a couple of problems with grouped sessions reported by danh: redrawNicholas Marriott
properly and choose the correct last window after a window is killed.
2009-12-20fix an incorrect magic number and typo in PROTOCOL; bz#1688Damien Miller
report and fix from ueno AT unixuser.org
2009-12-20Use the standard wording, requested by jmc@.Ingo Schwarze
Actually, this is much closer to the original submission by Daniel Dickmann.
2009-12-20find -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-20When 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-19try to clarify ChrootDirectory pathname argument a bit; resulting fromKevin Steves
a question on openssh-unix-dev. ok jmc@
2009-12-17Update from master repo. Many bugfixes + significant speedyps.Anders Magnusson
2009-12-17Allow keys to be replaced and reorder the table so that terminfo-defined keysNicholas Marriott
(or terminal-overrides) take precedence over internally defined.
2009-12-14Pass through the aixterm bright colours if the terminal supports them (>= 16Nicholas Marriott
colours).
2009-12-14Add server options to completion as well.Nicholas Marriott
2009-12-14New server option, escape-time, to set the timeout used to detect if escapesNicholas Marriott
are alone or part of a function key or meta sequence.
2009-12-13spacing, no binary change.Igor Sobrado
2009-12-12Nuke useless ancient documentation. ok deraadtNicholas Marriott
2009-12-12Whoops, missed these.Nicholas Marriott
2009-12-12tip is not setuid or setgid anymore and there are no PRIV/EXPR commands, soNicholas Marriott
remove the code. ok deraadt
2009-12-12when parsing .wav headers, check if rate <= RATE_MAX (instead ofAlexandre Ratchov
rate < RATE_MAX). Similarly check if bits <= 32 (instead of bits < 32)
2009-12-12Use a socketpair instead of a pair of pipes.Nicholas Marriott
looks ok to millert@
2009-12-11switch from 35 to the more common value of RSA_F4 == (2**16)+1 == 65537Markus Friedl
for the RSA public exponent; discussed with provos; ok djm@
2009-12-11try not to use size_t in places it does not belong; ok djmTheo de Raadt
2009-12-11Use quiet variable, and add missing sentinel to options array.Nicholas Marriott
2009-12-10careless fscanf, found by parfait, ok jsgTheo de Raadt
2009-12-10memory leak, found by parfait, ok jsgTheo de Raadt
2009-12-10better wording for 1 option from jmcTed Unangst
2009-12-10add an option '1' to display all cpu stats combined. helps save spaceTed Unangst
with increasing processor counts. ok deraadt (kettenis otto)
2009-12-10Add "server options" which are server-wide and not bound to a session orNicholas 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-10Eliminate 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-09We only need to fchdir(dotfd) for the -exec and -ok primaries soTodd C. Miller
defer the check for dotfd != -1 until we know we will need it. Based on a diff from schwarze@
2009-12-08Permit panes to be referred to as "top", "bottom", "top-left" etc, if the rightNicholas Marriott
pane can be identified.
2009-12-07update to sudo 1.7.2p2Todd C. Miller
2009-12-07behaviour for the -l flag differs between this implementation and posix;Jason McIntyre
spotted by millert
2009-12-06fix potential divide-by-zero in sftp's "df" output when talking to a serverDarren 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-06use socklen_t for getsockopt optlen parameter; reported byDamien Miller
Steve.McClellan AT radisys.com, ok dtucker@
2009-12-06zap unused variable and strlen; from Steve McClellan, ok djmDarren Tucker
2009-12-04vte is buggy and doesn't home the cursor after changing the scrollNicholas Marriott
region. Several people are hitting this, so add a workaround.
2009-12-04Do not write 16bit values directly to odd addresses - strict alignmentClaudio Jeker
architectures don't like that. Makes cd blanking on sparc64 possible. OK deraadt@, krw@, jasper@
2009-12-03Wrap at 80 columns.Nicholas Marriott
2009-12-03Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastNicholas Marriott
time now I've configured emacs to make them displayed in really annoying colours...
2009-12-03Eliminate duplicate code and ease the passage for server-wide options by addingNicholas 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-02Reflect the keypad mode of the application so that numlock works.Nicholas Marriott