Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-14 | add a few comments, finish killing kitchensink. | Marc Espie | |
2009-10-14 | be a bit more specific, write the list of unsigned packages. | Marc Espie | |
2009-10-14 | use choose_location | Marc Espie | |
2009-10-14 | make signature checking more quiet: discard openssl's STDERR, keep a tally | Marc Espie | |
of signed packages. - display a message only if signed packages have been signed. - show IN BIG CAPS unsigned package numbers if a mixture of signed/unsigned has been seen. | |||
2009-10-14 | add a "print" method to ProgressMeter and StubProgress to allow me to clean | Marc Espie | |
up the current mess (e.g., print things out to stderr without needing to explicitly clear the current line if needed). create a choose_location method directly in state, that will replace all instances of looking for a package eventually (hopefully). | |||
2009-10-14 | Don't allow cmd_lookup_client to test clients without a session. | Nicholas Marriott | |
2009-10-14 | Remove a redundant if (maxpty == npty) in check_pty - this is also tested by | Nicholas Marriott | |
the two ifs at the start of the function and both variables are only altered under pt_softc_lock so cannot change between the checks. ok guenther@ | |||
2009-10-14 | rework how devids are handled in the midlayer and mpath. | David Gwynne | |
previously a devid was a structure containing its type, length, and a pointer to the actual devid value. this has been changed so a devid is a header followed immediately by the memory making up the id value. this allows the header and its value to be allocated together. devids are now reference counted, so multiple things (eg, the mpath node handlers and the various scsi_link structures) can share the same allocation safely. this also frees devids when scsi_links go away, which was previously not done. if mpath is enabled, then print the devids out as part of the devices attach line. | |||
2009-10-13 | Start doing the neccessary operations in the detach function in the right order. | Theo de Raadt | |
No other functional change expected. ok dms | |||
2009-10-13 | oops, oops, oops. todo is not todo2 | Marc Espie | |
2009-10-13 | Correct udma timing register offset and the udma mode ceiling | Jonathan Gray | |
we allow for Intel SCH chips. From tharada@oucrc.org in PR 6232, verified against the datasheet. | |||
2009-10-13 | deal with UpdateSets earlier: build an updateset, and ask Update to complete | Marc Espie | |
it. Tweak the control for updates to move to main program. Eventually, we will run updates on the fly (there's still some merging code and debugging to go) | |||
2009-10-13 | Make iof(4) pass its bus speed to children, this in turn allows com(4) to | Miod Vallat | |
pick the right clock if the PCI bus the I/O board is on degrades to 33MHz. | |||
2009-10-13 | tweaks by "dawe", thanks | Jasper Lievisse Adriaanse | |
2009-10-13 | Pass audio keys to the audio layer even when the keyboard is in raw mode, | Miod Vallat | |
to match what pckbd does; reported by mk@ | |||
2009-10-13 | Connect pcppi bell to ukbd, so that x86 systems with usb console keyboard | Miod Vallat | |
can cause beeps on console. Reported by Greg Jones on misc@ | |||
2009-10-13 | Make sure we do not loop when allocating an extent region with EX_CONFLICTOK | Miod Vallat | |
and the whole extent is used; the current code computations would wrap. Found the hard way by jsg@, fix discuss with kettenis@, and you get a regress test for free (which will spin if you compile it again an old subr_extent.c) | |||
2009-10-13 | Get rid of devact enum, substitute it with an int and coresponding defines. | Paul Irofti | |
This is needed for the addition of further suspend/resume actions. Okay deraadt@, marco@. | |||
2009-10-13 | sync | Theo de Raadt | |
2009-10-13 | fix typo | Todd C. Miller | |
2009-10-13 | No need for perlthanks binary when perlbug -T will do. | Todd C. Miller | |
2009-10-13 | getting closer to sync again | Theo de Raadt | |
2009-10-13 | Add back bits mistakenly removed in rev 1.23 | Todd C. Miller | |
2009-10-13 | Somehow shasum snuck back in. | Todd C. Miller | |
2009-10-13 | Move lines into the history when scrolling even if the scroll region is not | Nicholas Marriott | |
the entire screen. Allows ircII users to see history, prompted by naddy. | |||
2009-10-13 | Handle DECCOLM by just emulating its side-effect of clearing the screen. | Nicholas Marriott | |
2009-10-13 | WRKOBJDIR defaults changed (obj -> pobj) | Landry Breuil | |
2009-10-13 | Add mode keys to move the cursor to the top, middle and bottom of the screen. | Nicholas Marriott | |
H/M/L in vi mode and M-R/M-r in emacs (bottom of screen not bound in emacs). | |||
2009-10-13 | Do this in a better way - print messages when exiting with nonzero. | Nicholas Marriott | |
Also remove the login shell information from server-info, only the client should care about it. | |||
2009-10-13 | Don't print exit messages when used as a login shell, requested by martynas@ a | Nicholas Marriott | |
while back. | |||
2009-10-13 | factor out code as stem2location | Marc Espie | |
2009-10-13 | In evbuffer_readline, do not lose data upon malloc failure. From mainstream: | Jacek Masiulaniec | |
http://levent.svn.sourceforge.net/viewvc/levent?view=rev&revision=1436 ok gilles@ | |||
2009-10-13 | you have to hate those stupid tools: | Marc Espie | |
if you echo nlist |ftp some_url the site *won't* give you an error code, it will just spew out a stupid line like: Failed to change directory. Can't change directory to pub/OpenBSD/zoinx: No such file or directory and that on stdout !!! Detect this in list grabbing, and display a decent error message for the user. Avoids some duh moments where you won't find shit because you mistyped the url... | |||
2009-10-13 | Forgot this bit when disableing restart capability. | Claudio Jeker | |
2009-10-13 | Fix mismerge | Todd C. Miller | |
2009-10-13 | Disable graceful restart for now. The EOR marker is sent in the wrong place | Claudio Jeker | |
and fixing this is not a two liner. Will be enabled again when I found out how to fix this. | |||
2009-10-13 | Don't try to use \n across scroll region when doing \r\n either. | Nicholas Marriott | |
2009-10-13 | When a session is unattached, reset its activity timer to prevent it locking | Nicholas Marriott | |
instantly when reattached. | |||
2009-10-13 | sort; | Jason McIntyre | |
2009-10-13 | sync | Theo de Raadt | |
2009-10-13 | Merge in some local changes that got lost. | Todd C. Miller | |
2009-10-13 | Instead of using something sort of similar for both newline checks, use | Nicholas Marriott | |
something the same. Doesn't fix the bug I'm looking for though :-/. | |||
2009-10-13 | sort the device list. from Brad. | Stuart Henderson | |
2009-10-12 | trim ending whitespaces in aliases files otherwhise makemap will fail to | Gilles Chehade | |
parse values correctly when ran in aliases mode, and smtpd will fail to parse values correctly when reading an include file | |||
2009-10-12 | document the new "for virtual map [...]" syntax | Gilles Chehade | |
2009-10-12 | - fix a null deref which could happen after a couple iterations of the | Gilles Chehade | |
aliases/virtual domains resolution code. - fix a logic bug which caused virtual domains not to be correctly handled after one iteration of the aliases resolution code. - introduce a few helper functions to help clean up and simplify the lka code. - simplify the IS_EXT/IS_MAILBOX/IS_RELAY macros so they manipulate a struct path * instead of the mess of dereferences we were passing them. | |||
2009-10-12 | Add fopen_unlocked.c pex-unix.c pex-common.c unlink-if-ordinary.c to | Robert Nagy | |
the list of built files and switch the md5.h header to the libiberty one. This change is needed by gcc4 and it is a major library crank for libiberty. tested by many people on many architectures and finally ok'd by deraadt@ | |||
2009-10-12 | Alcatel One Touch X060/X200 | Jonathan Gray | |
2009-10-12 | TCT Mobile modem, rebadged as Alcatel One Touch X060/X200. | Jonathan Gray | |
From David Coppa <dcoppa@gmail.com> | |||
2009-10-12 | regen | Jonathan Gray | |