summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a test for the new -P option. ok espie@sthen2009-10-143-2/+53
|
* Support the -P option from gnu m4, which prefixes builtins with thesthen2009-10-145-13/+35
| | | | | string m4_. Feedback from jmc@, Tobias Ulmer, Matthew Dempsky - thanks! ok espie@
* Second example discussing the pass modifier with rdr-tojmeltzer2009-10-141-3/+3
| | | | | | should actually use the pass modifier. ok henning jmc
* add a few comments, finish killing kitchensink.espie2009-10-142-11/+22
|
* be a bit more specific, write the list of unsigned packages.espie2009-10-141-3/+3
|
* use choose_locationespie2009-10-142-54/+10
|
* make signature checking more quiet: discard openssl's STDERR, keep a tallyespie2009-10-142-4/+27
| | | | | | | 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.
* add a "print" method to ProgressMeter and StubProgress to allow me to cleanespie2009-10-142-2/+39
| | | | | | | | 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).
* Don't allow cmd_lookup_client to test clients without a session.nicm2009-10-141-2/+3
|
* Remove a redundant if (maxpty == npty) in check_pty - this is also tested bynicm2009-10-141-5/+1
| | | | | | | 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@
* rework how devids are handled in the midlayer and mpath.dlg2009-10-143-40/+148
| | | | | | | | | | | | | | | | 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.
* Start doing the neccessary operations in the detach function in the right order.deraadt2009-10-131-16/+25
| | | | No other functional change expected. ok dms
* oops, oops, oops. todo is not todo2espie2009-10-131-2/+2
|
* Correct udma timing register offset and the udma mode ceilingjsg2009-10-132-4/+4
| | | | | | we allow for Intel SCH chips. From tharada@oucrc.org in PR 6232, verified against the datasheet.
* deal with UpdateSets earlier: build an updateset, and ask Update to completeespie2009-10-132-88/+69
| | | | | | | 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)
* Make iof(4) pass its bus speed to children, this in turn allows com(4) tomiod2009-10-134-8/+14
| | | | pick the right clock if the PCI bus the I/O board is on degrades to 33MHz.
* tweaks by "dawe", thanksjasper2009-10-131-14/+14
|
* Pass audio keys to the audio layer even when the keyboard is in raw mode,miod2009-10-131-2/+19
| | | | to match what pckbd does; reported by mk@
* Connect pcppi bell to ukbd, so that x86 systems with usb console keyboardmiod2009-10-131-9/+13
| | | | can cause beeps on console. Reported by Greg Jones on misc@
* Make sure we do not loop when allocating an extent region with EX_CONFLICTOKmiod2009-10-133-9/+22
| | | | | | | 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)
* Get rid of devact enum, substitute it with an int and coresponding defines.pirofti2009-10-13124-350/+348
| | | | | | This is needed for the addition of further suspend/resume actions. Okay deraadt@, marco@.
* syncderaadt2009-10-132-2/+0
|
* fix typomillert2009-10-131-2/+2
|
* No need for perlthanks binary when perlbug -T will do.millert2009-10-133-9/+5
|
* getting closer to sync againderaadt2009-10-1317-776/+20
|
* Add back bits mistakenly removed in rev 1.23millert2009-10-131-0/+2
|
* Somehow shasum snuck back in.millert2009-10-131-1/+0
|
* Move lines into the history when scrolling even if the scroll region is notnicm2009-10-133-23/+78
| | | | | | the entire screen. Allows ircII users to see history, prompted by naddy.
* Handle DECCOLM by just emulating its side-effect of clearing the screen.nicm2009-10-131-1/+9
|
* WRKOBJDIR defaults changed (obj -> pobj)landry2009-10-131-3/+3
|
* Add mode keys to move the cursor to the top, middle and bottom of the screen.nicm2009-10-134-6/+38
| | | | H/M/L in vi mode and M-R/M-r in emacs (bottom of screen not bound in emacs).
* Do this in a better way - print messages when exiting with nonzero.nicm2009-10-132-27/+27
| | | | | Also remove the login shell information from server-info, only the client should care about it.
* Don't print exit messages when used as a login shell, requested by martynas@ anicm2009-10-131-23/+29
| | | | while back.
* factor out code as stem2locationespie2009-10-131-32/+39
|
* In evbuffer_readline, do not lose data upon malloc failure. From mainstream:jacekm2009-10-131-2/+1
| | | | | http://levent.svn.sourceforge.net/viewvc/levent?view=rev&revision=1436 ok gilles@
* you have to hate those stupid tools:espie2009-10-131-1/+10
| | | | | | | | | | | | | | | | 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...
* Forgot this bit when disableing restart capability.claudio2009-10-131-3/+3
|
* Fix mismergemillert2009-10-131-6/+2
|
* Disable graceful restart for now. The EOR marker is sent in the wrong placeclaudio2009-10-132-7/+7
| | | | | and fixing this is not a two liner. Will be enabled again when I found out how to fix this.
* Don't try to use \n across scroll region when doing \r\n either.nicm2009-10-131-2/+2
|
* When a session is unattached, reset its activity timer to prevent it lockingnicm2009-10-131-1/+11
| | | | instantly when reattached.
* sort;jmc2009-10-131-8/+8
|
* syncderaadt2009-10-1319-23/+23
|
* Merge in some local changes that got lost.millert2009-10-1331-76/+103
|
* Instead of using something sort of similar for both newline checks, usenicm2009-10-131-3/+4
| | | | something the same. Doesn't fix the bug I'm looking for though :-/.
* sort the device list. from Brad.sthen2009-10-131-5/+7
|
* trim ending whitespaces in aliases files otherwhise makemap will fail togilles2009-10-121-1/+10
| | | | | parse values correctly when ran in aliases mode, and smtpd will fail to parse values correctly when reading an include file
* document the new "for virtual map [...]" syntaxgilles2009-10-121-2/+8
|
* - fix a null deref which could happen after a couple iterations of thegilles2009-10-126-119/+130
| | | | | | | | | | | | | 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.
* Add fopen_unlocked.c pex-unix.c pex-common.c unlink-if-ordinary.c torobert2009-10-127-39/+1487
| | | | | | | 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@