summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-25fxp no longer fits on this mediaTheo de Raadt
2009-06-25Document how to add static MPLS labels.Michele Marchetto
input jmc@, ok claudio@
2009-06-25Change safe_rng_read() from __inline to static __inline likeJonathan Gray
the original FreeBSD code for consistent behaviour between c89/c99 compilers.
2009-06-25Teach ifstated to use ROUTE_FILTER. Requested by claudio@.Stuart Henderson
ok claudio@ henning@
2009-06-25scrub_flags is a u_int8_t, but PFSTATE_SCRUB_TCP is 0x0100, so theStuart Henderson
"reassemble tcp" state option failed to work correctly. Increasing this to u_int16_t fixes kernel/6178. ok deraadt@ henning@
2009-06-25Use the pane flags not the window flags. Doh.Nicholas Marriott
2009-06-25diagflags for diagsMarc Espie
okay nicm@
2009-06-25pkgpath are only used for updates, so matching should only be pkgpath vsMarc Espie
default info, and not maximal matching, otherwise too many things will match. problem noticed by marco@ With input from sthen@ and tests from kili@
2009-06-25If getcwd() fails, use the user's home directory, or /, instead of failing withNicholas Marriott
an error.
2009-06-25lines variable can be -1 (to be ignored), so should be signed. Found by lint.Nicholas Marriott
2009-06-25Remove error about using -L and -S together which was never displayed asNicholas Marriott
logging wasn't yet enabled, was unnecessary, and contradicted the man page which says using -S will cause -L to be ignored.
2009-06-25tmux doesn't and won't need syslog logging, so remove it and some other unusedNicholas Marriott
functions found by lint. Also move a couple of internal function declarations into file scope.
2009-06-25Miscellaneous unused functions, including one which was basically aNicholas Marriott
duplicate. Found by lint.
2009-06-25Nuke unused buffer functions. Found by lint.Nicholas Marriott
Also remove some old debug output which was #if 0.
2009-06-25Unused prototypes. Found by lint, no binary change.Nicholas Marriott
2009-06-25Unused variables. Found by lint, no binary change.Nicholas Marriott
2009-06-25Workaround a stupid problem ATI SB600 revisions and ATI SB700 southTheo de Raadt
bridge revisions A12 and A13. We really don't know what it does, but then noone else does. From NetBSD and Linux, via brad
2009-06-24Remove some cruft from the Makefile.Nicholas Marriott
2009-06-24Now that a UTF-8-capable puts function exists, use it for printing strings inNicholas Marriott
choice/more modes - lines with UTF-8 now display properly in find-window results.
2009-06-24Fix a type mismatch warning in assignment.Nicholas Marriott
2009-06-24Change find-window and monitor-content to use fnmatch(3). For convenience andNicholas Marriott
compatibility, *s are implicitly added at the start and end of the pattern. Also display the line number and the entire line in the results, and lose the nasty section_string function and the now empty util.c file. Initially from Tiago Cunha.
2009-06-24Add a dedicated function to convert a line into a string and use it to ↵Nicholas Marriott
simplify the search window function.
2009-06-24fix this regression test; "reassemble tcp" should be in this locationStuart Henderson
in the output. this test currently fails; see kernel/6178
2009-06-24Compute OpenBSD area bounds as the largest area spanning all the OpenBSDMiod Vallat
partitions; since all of them are DPME partitions, they might not be contiguous but that's the best we can do at the moment.
2009-06-24Change to match xterm's resizing behaviour, including pushing lines into theNicholas Marriott
history from the top when reducing vertical size and pulling them again when increasing size. ok todd sthen
2009-06-24Make remain-on-exit work again when there is only one pane left, which wasNicholas Marriott
broken sometime during the pane/layout changes. Reported/tested by Iain Morgan, thanks.
2009-06-24recvmsg ENOENT noncritical tooHenning Brauer
2009-06-24Even more pci ethernet devices, based on a diff from Brad.Miod Vallat
2009-06-24add some pci ethernet devices that some people, like miod, might be usingTheo de Raadt
2009-06-24Trying to predict the cursor position for UTF-8 output in the same way as forNicholas Marriott
normal eight-bit output is wrong, separate it into a different function. Fixes spacing when mixing UTF-8 with some escape sequences, notably the way w3m does it.
2009-06-24enable softraidTodd T. Fries
test built and booted by me ok marco@, deraadt@
2009-06-24Remove a semicolon at the end of an if statement that made the threadJonathan Gray
waiting for all the workqs to die wakeup more often than it should have. ok dlg@ tedu@
2009-06-24Correct the prototype of ffecom_gfrt_basictype() to match theJonathan Gray
function, this change was made in the 3.4.0 release of gcc. ok deraadt@
2009-06-24Lower stack size before mlockall(). With login.conf defaults for i386,Stuart Henderson
this avoids wiring (8MB-256KB). From AerieBSD. ok deraadt@
2009-06-24syncTheo de Raadt
2009-06-24Make environment file parsing grok linux-style env files.Todd C. Miller
2009-06-24There are 3 reasons why the first block in apm_probe can fail, and in oneTheo de Raadt
case it is not OK to DPRINTF, so delete that code. Found by dhill ok marco dhill
2009-06-24Add support for the SMBus controller for the Broadcom HT-1100 chipsetTheo de Raadt
to piixpm(4). from brad
2009-06-24like I did for em(4) before, doubled error messages are sillyTheo de Raadt
from brad
2009-06-24move the "pf_map_addr: selected address" printf up to -xnoisy.Stuart Henderson
ok henning@
2009-06-24Install ntfs includes and add libkvm (fstat) support. ntfs bitsTodd C. Miller
adapted from NetBSD fstat. OK deraadt@
2009-06-24Remove extra psignal/wakeup in exit1() which can cause the parent toKurt Miller
receive SIGCHLD twice if scheduled before the reaper runs. diff by guenther@ and myself. okay guenther@ deraadt@
2009-06-24Reset the rebuild counter when initiating a rebuild.Joel Sing
ok marco@
2009-06-24Abort the current rebuild if the rebuild chunk disappears. Whilst here alsoJoel Sing
rename the abort flag so that it is more generalised. ok marco@
2009-06-24for the isp(4) driver, invert the meaning of the options which pullTheo de Raadt
firmwares into the smaller (and larger) media ok krw
2009-06-24Bring macppc install into the new age. Fewer questions, less verbiage,Kenneth R Westerback
more action and safety. "reads ok" sthen@. ok deraadt@
2009-06-24turn off POOL_DEBUG as we go into release; pointed out by mpfTheo de Raadt
2009-06-24Major update to isp driver, mostly from mjacob via FreeBSD.Kenneth R Westerback
Everything that worked before should still work so in it goes. Newer boards (2300, 2400) may now work but are still a work in progress. Thanks to many testers but especially kettenis@ for finding a show stopper bug and stomping it. ok deraadt@
2009-06-24synchronize synopsis and usage; "-l", "-r", "-s" and "-x" are mutuallyIgor Sobrado
exclusive; while here, slightly improve spacing in the source code so it fits on a 80-column display again. diff greatly improved by martynas@; ok jmc@, martynas@
2009-06-24tweak previous;Jason McIntyre