summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2014-03-02Use OBJECT_FMTS from <bsd.own.mk> to determine elf32/elf64 needsmatt
2014-03-02Use OBJECT_FMTS from <bsd.own.mk>matt
2014-02-27AF_MAX isn't an address family so don't include it in the generated table.ginsbach
2014-02-27struct member can't be null, if the pointer itself is valid.joerg
2014-02-24Rename NetBSD/hp700 to NetBSD/hppa.skrll
Unfortunately our VCS isn't very helpful here.
2014-02-23skip unparseable addresses.mlelstv
2014-02-19Remove some pointless inclusions os sys/user.hdsl
2014-02-18add __extension__ and typeofchristos
2014-02-18__real__ and __imag__ produce lvalueschristos
2014-02-17config() in manconf.c now verifies _build (and _crunch) commanduwe
templates with fmtcheck(3) so annotate the printf that uses these commands as safe with a __format_arg wrapper and drop -Wno-format-nonliteral. XXX: Using local wrapper for now, solving this in general would be nice, but it raises namespace pollution issues. XXX^2: catman(8) also uses manconf.c and uses _build and _crunch so it can also benefit from this (but see above).
2014-02-17Check _build and _crunch commands with fmtcheck(3), warn about anduwe
ignore bad ones.
2014-02-15Put .INCLUDEDFROM* in the right sectionsjg
2014-02-15delete the correct variables on eofchristos
fix typo in comment (from sjg)
2014-02-14fix protocol printing order.christos
2014-02-13Fix some typos found by Rich Neswold and reported in PR 48597.wiz
2014-02-12Reduce the calls to realloc from brk_string by basing initial argmax guesssjg
on length of input. Reviewed by: christos
2014-02-07Use Var_Value() instead of getenv() to obtain MAKEOBJDIR{,PREFIX}.pooka
Fixes "make -X MAKEOBJDIR=foo". Purely uncoincidentally, build.sh creates the nbmake wrapper with MAKEFLAGS -X on FreeBSD.
2014-02-04Correct number of output files in example.wiz
From Jason McIntyre <jmc@OpenBSD>. While here, also explain about the extra file in the example and put .Ex into its own section in the correct place. Bump date.
2014-02-04Handle another declaration after statement case for lint in c99 mode.njoly
Add the corresponding testcase.
2014-02-03From Igor Sobrado in private email (based on his OpenBSD commit):wiz
improve POSIX compliance by continuing to process the remaining file operands after not finding an input file. from the IEEE Std 1003.1-2008 (``POSIX.1'') rationale: "Unlike other utilities, some historical implementations of cut exit after not finding an input file, rather than continuing to process the remaining file operands. This behavior is prohibited by this volume of POSIX.1-2008, where only the exit status is affected by this problem." joint work with jmc@, who identified the compliance issue, and millert@ ok millert@, jmc@
2014-01-28Clarify that -l params must be given after options.pooka
2014-01-28* make -h actually workpooka
* give usage for invalid usage
2014-01-28rcs id police *uuu-aaa, uuu-aaa*pooka
2014-01-27add today's releases: 5.1.4, 5.2.2, 6.0.4, and 6.1.3jnemeth
2014-01-26Recognize coldfirematt
2014-01-25Get SIZE_MAX and OFF_MAX straight...riastradh
2014-01-25Factor out an offtab_compute_window_position routine.riastradh
2014-01-25Fix some more integer overflow/truncation issues.riastradh
Arithmetic in C is hard. Let's go shopping!
2014-01-24CID 1164169: integer overflowchristos
2014-01-24Checking _LP64 to determine the size of the built binary is just wrong. Wechristos
build n32 by default on mips64 now, we don't handle the compat build which is n64. This is the same case for sparc64/sparc and amd64/i386 (lint does not run in compat)
2014-01-23Mark offtab_bug[x] as dead.joerg
2014-01-22Fix $NetBSD$ tag.riastradh
2014-01-22Bump date on vndcompress(1) man page.riastradh
2014-01-22Fix vndcompress man page to reflect default window size.riastradh
2014-01-22Change vndcompress to use a default window size of 512.riastradh
For vnduncompress on nonseekable input, the window size is as large as it needs to be by default, as before. Not clear that this is the right choice -- by default vnduncompress on nonseekable input will just use unbounded memory unsolicited.
2014-01-22Document the new vndcompress -w option and nuke BUGS section.riastradh
Perhaps vndcompress and vnduncompress ought by default to choose a limited window size (say, 8192 entries, i.e. 64k bytes, the default MAXPHYS), and vnduncompress should fall back to an unlimited window only if the input is nonseekable.
2014-01-22Reflect rename of `-s' to `-b' in the vndcompress man page.riastradh
2014-01-22Move err1 & errx1 to the end of vnduncompress.c; add __printflike.riastradh
2014-01-22Rename block size option from `-s' to `-b'.riastradh
Makes more sense and makes it consistent with other utilities such as pax and pigz. This vndcompress has never gone out in a release, so changing the name of the option shouldn't cause too many problems...
2014-01-22Simplify vndcompress offtab_compute_window_size.riastradh
2014-01-22Fix typo in comment.riastradh
2014-01-22Fix up ulimited vndcompress tests and explain what's up with them.riastradh
2014-01-22Add some simple automatic tests for window sizes.riastradh
2014-01-22Remove silly comment in offtab_reset_write.riastradh
2014-01-22Window size is now an option; remove XXX comment to the contrary.riastradh
2014-01-22Add comment explaining why piperestart.cl2part is allowed to fail.riastradh
2014-01-22Split guard in offtab_write_window into offtab_maybe_write_window.riastradh
2014-01-22Seek if necessary at end of offtab_reset_read.riastradh
Fixes vnduncompress with a small window, and makes offtab_reset_read symmetric with offtab_reset_write.
2014-01-22Add option -w to vnd(un)compress to specify the window size.riastradh
2014-01-22Add some leading zero digits to the flags. Cosmetic change only.riastradh