summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-13Get 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-13syncTheo de Raadt
2009-10-13fix typoTodd C. Miller
2009-10-13No need for perlthanks binary when perlbug -T will do.Todd C. Miller
2009-10-13getting closer to sync againTheo de Raadt
2009-10-13Add back bits mistakenly removed in rev 1.23Todd C. Miller
2009-10-13Somehow shasum snuck back in.Todd C. Miller
2009-10-13Move lines into the history when scrolling even if the scroll region is notNicholas Marriott
the entire screen. Allows ircII users to see history, prompted by naddy.
2009-10-13Handle DECCOLM by just emulating its side-effect of clearing the screen.Nicholas Marriott
2009-10-13WRKOBJDIR defaults changed (obj -> pobj)Landry Breuil
2009-10-13Add 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-13Do 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-13Don't print exit messages when used as a login shell, requested by martynas@ aNicholas Marriott
while back.
2009-10-13factor out code as stem2locationMarc Espie
2009-10-13In 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-13you 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-13Forgot this bit when disableing restart capability.Claudio Jeker
2009-10-13Fix mismergeTodd C. Miller
2009-10-13Disable graceful restart for now. The EOR marker is sent in the wrong placeClaudio Jeker
and fixing this is not a two liner. Will be enabled again when I found out how to fix this.
2009-10-13Don't try to use \n across scroll region when doing \r\n either.Nicholas Marriott
2009-10-13When a session is unattached, reset its activity timer to prevent it lockingNicholas Marriott
instantly when reattached.
2009-10-13sort;Jason McIntyre
2009-10-13syncTheo de Raadt
2009-10-13Merge in some local changes that got lost.Todd C. Miller
2009-10-13Instead of using something sort of similar for both newline checks, useNicholas Marriott
something the same. Doesn't fix the bug I'm looking for though :-/.
2009-10-13sort the device list. from Brad.Stuart Henderson
2009-10-12trim ending whitespaces in aliases files otherwhise makemap will fail toGilles Chehade
parse values correctly when ran in aliases mode, and smtpd will fail to parse values correctly when reading an include file
2009-10-12document the new "for virtual map [...]" syntaxGilles Chehade
2009-10-12- fix a null deref which could happen after a couple iterations of theGilles 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-12Add fopen_unlocked.c pex-unix.c pex-common.c unlink-if-ordinary.c toRobert 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-12Alcatel One Touch X060/X200Jonathan Gray
2009-10-12TCT Mobile modem, rebadged as Alcatel One Touch X060/X200.Jonathan Gray
From David Coppa <dcoppa@gmail.com>
2009-10-12regenJonathan Gray
2009-10-12TCT Mobile modem, rebadged as Alcatel One Touch X060/X200.Jonathan Gray
From David Coppa <dcoppa@gmail.com>
2009-10-12step two of syncTheo de Raadt
2009-10-12part one of syncTheo de Raadt
2009-10-12remove troublesome file that broke the 5.10.1 mergeTodd C. Miller
2009-10-12auixp(4) also supports SB600. from Brad.Jacob Meuser
2009-10-12remove editor backup file from MANIFESTTodd C. Miller
2009-10-12Undo keywork expansion by escaping the dollar signs as octalTodd C. Miller
2009-10-12Merge in perl 5.10.1; part twoTodd C. Miller
2009-10-12Merge in perl 5.10.1Todd C. Miller
2009-10-12to support virtual domains properly, smtpd needed to have the domain storedGilles Chehade
as a key in the virtual map, which means that to support virtual domain for openbsd.org I would do: openbsd.org whatevervalue gilles@openbsd.org gilles this commit teaches makemap how to deduce the special domain keys based on the entries for that domain, so that only the second line is needed now.
2009-10-12fix a bug where matching a "for all" rule with multiple condition will notGilles Chehade
let us know which condition we matched.
2009-10-12import perl 5.10.1Todd C. Miller
2009-10-12More inodes by default on the ramdisk, because otherwise a many-diskTheo de Raadt
system runs out of space; reported by William Yodlowsky
2009-10-12source code can fit on a 80-column display, no binary change.Igor Sobrado
2009-10-12sort flags in description.Igor Sobrado
2009-10-12When drawing lines that have wrapped naturally, don't force a newline butNicholas Marriott
permit them to wrap naturally again. This allows terminals that use this to guess where lines start and end for eg mouse selecting (like xterm) to work correctly. This was another long-standing issue raised by several people over the last while. Thanks to martynas@ for much testing. This was not trivial to get right so bringing it in for wider testing and adn to fix any further glitches in-tree.
2009-10-12When backspace is received at the beginning of a line and the previous line wasNicholas Marriott
wrapped, move the cursor back up to the end of the previous line. Another one of the forgotten persons requested this quite a while ago (I need to start noting names on todo items...) when it was quite hard to implement. Now it is easy and I don't see it can do any harm, so hey presto...