Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-24 | serial console support | Uwe Stuehler | |
2005-05-24 | Switch atomicio to a simpler interface which returns size_t and uses | Anil Madhavapeddy | |
0 to signal errors. should be no functional change in nc apart from different error messages. "groovy", said deraadt@ | |||
2005-05-24 | fix links target | Uwe Stuehler | |
2005-05-24 | ifa->ifa_addr can be NULL in some cases, pt out by Kurt Roeckx | Henning Brauer | |
<kurt@roeckx.be> / bugs.debian.org/310586 | |||
2005-05-24 | .Cd and .Xr's for zaurus | Uwe Stuehler | |
2005-05-24 | - simplify cvs_mkadmin(). | Joris Vink | |
- create the correct base paths in checkout. - remove the CVS_CMD_SENDARGS2 flag for checkout, it doesn't need it. okay jfb@ | |||
2005-05-24 | no more telnetd, ba@bsws.de | Henning Brauer | |
2005-05-24 | crank up MAXCCB to 250 for cards that can handle it. ok mickey@ | Marco Peereboom | |
2005-05-24 | wrap into nice defines | Martin Reindl | |
ok mickey@ | |||
2005-05-24 | replace jnz FOO;jmp BAR;FOO: with jz BAR;FOO:, the idle loop will be even ↵ | Niklas Hallqvist | |
more efficient | |||
2005-05-24 | cleanup parser, permit more than one listener | Hakan Olsson | |
2005-05-24 | logging tweaks | Hakan Olsson | |
2005-05-24 | remove debugging stuff | Joris Vink | |
2005-05-24 | Don't need to protect as many signals from _POSIX_SOURCE now that POSIX | Todd C. Miller | |
specifies them. OK miod@ | |||
2005-05-24 | Remove unnecessary error check that is already done in parsecommunity(). | Claudio Jeker | |
2005-05-24 | Switch atomicio to use a simpler interface; it now returns a size_t | Anil Madhavapeddy | |
(containing number of bytes read/written), and indicates error by returning 0. EOF is signalled by errno==EPIPE. Typical use now becomes: if (atomicio(read, ..., len) != len) err(1,"read"); ok deraadt@, cloder@, djm@ | |||
2005-05-24 | KNF | Claudio Jeker | |
2005-05-24 | Use the 'netmask' keyword in the ifconfig examples so they actually work. | Ryan Thomas McBride | |
Courtesy of stephen.marley@cl-is.com | |||
2005-05-24 | add a note describing latest guard feature | Ted Unangst | |
2005-05-24 | handle sizeof(void *) allocations specially when using malloc guard. | Ted Unangst | |
they get a whole page and go right at the end of it. ok deraadt tdeval | |||
2005-05-24 | variety of man page fixes | Jared Yanovich | |
- add non-legacy synopsis (and sync usage) - sort options - refer to synopsis arguments consistently - rearrange examples - mdoc tweaks - mention glob patterns for -t and -x ok jmc, otto | |||
2005-05-24 | oops | Theo de Raadt | |
2005-05-24 | Restoration of terminal settings can be broken by a well-timed signal, | Todd C. Miller | |
e.g. a terminating scp killing its ssh child so retry on EINTR. From peak@argo.troja.mff.cuni.cz via portable openssh bugzilla #905 | |||
2005-05-24 | let ramdisks compile again. people -- please always try to compile with ↵ | Theo de Raadt | |
your new options off, too | |||
2005-05-24 | Use comma only to separate facilities on the same level. Sort selector | Camiel Dobbelaar | |
lines on facility. End sentences with a dot. And some whitespace nits. Matrix (debug mode) is equivalent. ok otto millert | |||
2005-05-24 | add stge(4) | Brad Smith | |
2005-05-24 | do not print cpu startup messages (because they are obvious) | Theo de Raadt | |
2005-05-24 | hlt hlt is not a good idea. Rework APM to do what the spec actually says. ↵ | Marco Peereboom | |
Run actual BIOS calls whenever we are actually idle. Tovarisch! ok deraadt@ toby@ beck@ weingart@ art@ | |||
2005-05-24 | move sk(4) and epic(4) out of the untested section | Brad Smith | |
2005-05-24 | support trunk stacking (trunks as trunk ports) and some fixes | Reyk Floeter | |
ok brad@ | |||
2005-05-24 | add epic(4) and stge(4) | Brad Smith | |
2005-05-24 | cvs_noexec checks; ok joris@ | Xavier Santolaria | |
2005-05-24 | don't try to create directories with mkdir(2) in cvs_resp_sticky(). | Joris Vink | |
it will already be created with cvs_file_create(). fixes the Clear-sticky and Set-sticky responses. | |||
2005-05-24 | sync | Theo de Raadt | |
2005-05-24 | In lsa_merge() check if the LSA changed. If it did not change just free the | Claudio Jeker | |
new one and use the old one. This will reduce the amount of updates sent. OK norby@ | |||
2005-05-24 | Fix some obvious issues in the summary LSA origination. | Claudio Jeker | |
Actually remove summary LSA if the LSA they refer to are no longer valid. Set correct cost on the summary LSA. Announce type 4 summary LSA. OK norby@ | |||
2005-05-24 | include trunk.h to get the NTRUNK value | Reyk Floeter | |
ok cloder@ | |||
2005-05-24 | as a client, the the Root response first, before trying to ask the version | Joris Vink | |
from our server. This will prevent our server from screwing up in cvs_startcmd(). ok jfb@ | |||
2005-05-24 | remove NetBSD's event counter code. | Brad Smith | |
2005-05-24 | san depends on sppp. canacar@ ok. | Hakan Olsson | |
2005-05-24 | Fix our NTFS readdir function. | Brad Smith | |
To check a directory's in-use bitmap bit by bit, we use a pointer to an 8 bit wide unsigned value. The index used to dereference this pointer is calculated by shifting the bit index right 3 bits. Then we do a logical AND with the bit# represented by the lower 3 bits of the bit index. This is an idiomatic way of iterating through a bit map with simple bitwise operations. This commit fixes the bug that we only checked bits 3:0 of each 8 bit chunk, because we only used bits 1:0 of the bit index for the bit# in the current 8 bit value. This resulted in files not being returned by getdirentries(2). Change the type of the bit map pointer from `char *' to `u_int8_t *'. From FreeBSD ok pedro | |||
2005-05-24 | when a device vnode associated with a mount point disappears, mark the | Pedro Martelletto | |
filesystem as doomed and unmount it | |||
2005-05-24 | - allow reception of VLAN sized frames | Brad Smith | |
- make sure to re-init the card when setting the MTU - don't do a full card re-init when going into promisc mode or adding/removing multicast addresses, this causes the PHY to be reset | |||
2005-05-24 | Set the data length on CBI data transfers. | Christopher Pascoe | |
ok dlg@ | |||
2005-05-24 | better handling of disappearing devices, in spec_close(), don't try to | Pedro Martelletto | |
double-lock the vnode if we're coming from vclean() | |||
2005-05-24 | brelse() on failed bread() | Pedro Martelletto | |
2005-05-24 | fix wrong option and clarify a sentence; ok jmc@ | David Krause | |
2005-05-24 | remove debugging messages | Jean-Francois Brousseau | |
2005-05-24 | add net.inet.ip.ifq for monitoring and changing ifqueue; similar to netbsd | Markus Friedl | |
ok henning | |||
2005-05-24 | add support for brace notation for interface groups, i. e. (testgroup) matches | Henning Brauer | |
all IPs on all interfaces in testgroup |