summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/LPdir_unix.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-10-21"usage:" is lowercase; spacing.sobrado1-3/+3
2009-10-21After forking, the child is single threaded, so tell libc that. Thisguenther2-2/+8
is needed to avoid deadlocks in popen() on FILE locking. ok kurt@
2009-10-21sort options; synchronize argument names with synopsis;sobrado1-4/+5
split the usage's output in two lines to fit on standard displays. ok millert@
2009-10-21Tweak descriptions for up/down pane to be clearer.nicm1-4/+4
2009-10-21Don't redraw the scroll region on linefeed/reverse index unless it is necessarynicm1-17/+19
(the cursor is at the bottom/top). Should fix slow cursor movement when using vi in a pane spotted by pirofti@.
2009-10-21catch signals when we start doing stuff... so that cleaning up at theespie1-1/+7
end always occur, unless you insist on ^C.
2009-10-21minor bug-fix: partial_install is not print.espie1-6/+6
remove arguments that are no longer used.
2009-10-21Some terminals don't correctly clear their let's-wrap flag after changing thenicm1-1/+10
scroll region (which moves the cursor to 0,0). This means that if the cursor was at the edge of the screen, any further output after scroll region change incorrectly causes a line wrap. Add a workaround to move the cursor to position 0 if it is at the screen edge before changing scroll region.
2009-10-21Getting the read and write ends of the pipe the right way round is usuallynicm1-8/+8
recommended. DOH.
2009-10-21when freeing buffers (i.e. when sio_stop() is called on client side),ratchov1-1/+2
clear the ``tickpending'' flag to avoid sending ticks corresponding to non existent buffers (which in turn confuses clients). found and analysed by jakemsr@
2009-10-20%zu not %u, doh.nicm2-4/+4
2009-10-20Sort out stdout before stdin/stderr in case the stdout side of the pipe got onenicm1-7/+7
of their fds.
2009-10-20Correctly nuke the EOL $ marker when scrolling, reported by martynas@, thanks.nicm1-4/+7
2009-10-20Check mmap return value against MAP_FAILED not NULL.pirofti1-2/+2
Okay deraadt@, otto@.
2009-10-20Try to reduce the UTF-8 mess.nicm5-185/+200
Get rid of passing around u_char[4]s and define a struct utf8_data which has character data, size (sequence length) and width. Move UTF-8 character collection into two functions utf8_open/utf8_append in utf8.c which fill in this struct and use these functions from input.c and the various functions in screen-write.c. Space for rather more data than is necessary for one UTF-8 sequence is in the utf8_data struct because screen_write_copy is still nasty and needs to reinject the character (after combining) into screen_write_cell.
2009-10-20UTF-8 combined character fixes.nicm3-39/+76
Thai can have treble combinations (1 x width=1 then 2 x width=0) so bump the UTF-8 cell data size to 9 and alter the code to allow this. Also break off the combining code into a separate function, handle any further combining beyond the buffer size by replacing the character with _s, and when redrawing the UTF-8 character don't assume the first part has just been printed, redraw the entire line.
2009-10-20Move the check for whether to force a line wrapper lower down into the tty codenicm2-23/+17
where it has access to the tty width, which is what should have been checked.
2009-10-20Nuke stray blank line.nicm1-2/+1
2009-10-20the flags -h and -u are mutually exclusive; we do not need enclosingsobrado2-19/+14
-f in brackets in the list of options; while here, sort the options in the manual page. jmc@ greatly improved the diff fixing a few additional bits on the manual page. ok jmc@
2009-10-20sync to 1.9.7: use .In instead of .Fd #includeschwarze2-6/+6
2009-10-20ex(1) and vi(1) are different editors. diff based on the originalsobrado1-3/+3
printed edition of the User's Reference Manual from USENIX and O'Reilly. 4.4BSD had exactly this, that is much more accurate than our current description (while here, Jason observed that both FreeBSD and NetBSD do the same). tweaked by jmc@ ok jmc@
2009-10-20improve the synopsis of mkalias(8) and sort the list of flags onsobrado2-27/+26
the manual page. ok jmc@
2009-10-20describe a bit more about High Definition Audio architecturejakemsr1-7/+227
as well as how the mixer item names are derived.
2009-10-20recognize the VIA VT1702 codeckevlo1-1/+11
ok jakemsr@
2009-10-20"active" is an unused member of the scsi_link structure. i couldnt find anydlg1-2/+1
uses of it in our tree. ok krw@ deraadt@
2009-10-19antsyjsg9-550/+217
no binary change apart from nfsm_reqhead() which is clearly correct. ok thib@
2009-10-19sync to 1.9.7: consolidate some -man -Tascii functions,schwarze1-66/+32
and use a static buffer for the footer
2009-10-19sync to 1.9.7: kristaps@ renamed part of the DECL_ARGS :-(schwarze1-244/+216
intricately mixed with three minor .Bd fixes
2009-10-19update man pagesgilles2-6/+6
2009-10-19change virtual rule so that it reads: accept for virtual "mapname", insteadgilles1-6/+6
of: accept for virtual map "mapname" ... discussed with jacekm@
2009-10-19sync to 1.9.7: the same function was declared in two different headers;schwarze1-2/+1
spotted by Ulrich Spoerlein, uqs at spoerlein dot net
2009-10-19sync to 1.9.7: avoid using the same identifier for a static functionschwarze1-31/+31
and for a local variable in another function in the same compilation unit; suggested by Ulrich Spoerlein, uqs at spoerlein dot net
2009-10-19currently, smtpd is capable of having multiple listeners with differentgilles5-41/+99
options but they will all share the same ruleset. this means that there is no way to have a rule apply to a session established on one listener but not applied on another. this commit brings initial support for tagging listeners and having the rules able to match these specific listeners. The following will define a rule which will only apply to interfaces tagged as "mynet": listen on lo0 # implicit lo0 tag listen on fxp0 tag mynet listen on fxp1 tag mynet accept on mynet for domain "example.org" deliver to mbox
2009-10-19sync to 1.9.7: compatibility fix; from joerg at netbsd dot orgschwarze1-4/+4
2009-10-19sync to 1.9.7: typo; from Alan Bueno, alan dot bsd at gmail dot comschwarze1-2/+2
2009-10-19users within virtual domains do not necessarily map to a real user account,gilles3-12/+42
teach smtpd how to deliver using specific user permissions: accept for virtual map "foo" deliver to maildir "/m/%d/%u" user foo will deliver mail under /m/domain/user as user foo idea and initial diff discussed with jacekm@
2009-10-19fix compile time warning due to missing castgilles1-2/+2
2009-10-19Correct a target name so that we don't rebuild vers.o (and thenguenther27-60/+56
bsd) unless some other object has changed. Rebuild and reinstall in /usr/src/usr.sbin/config/ after updating! "I like it" deraadt@
2009-10-19sync to 1.9.6: minor fixes:schwarze1-6/+3
* avoid blank character before the closing ">" of .In * .Bt can not have children
2009-10-19sync to 1.9.6: multiple improvements to references (.Rs)schwarze5-21/+170
* validate and order .Rs child nodes * underline book title (.%B) and issuer (.%I) * enclose title of article (.%T) in quotes * avoid calling mdoc_verr directly, use a proper error code instead
2009-10-19sync to 1.9.6: do not die from .Bd -literal -offset w/o arg (and similar)schwarze2-15/+56
Actually, our ancient groff behaves slightly differently than this fix, but not to die is already an improvement. Needs a closer look later.
2009-10-19update to tzdata2009o from elsie.nci.nih.govmillert2-13/+104
2009-10-19remove almost all references to set->handle, iterate over newer in mostespie2-9/+11
cases (todo: rebuild dependency headers for the complex case...)
2009-10-19iterate over newer instead of 1 single handleespie1-28/+38
2009-10-19basic routines to handle the merging of updatesets: mark updatesets asespie3-5/+39
already done, separate remove/mark_installed in tracker, create a merge method that allows the merging of updatesets.
2009-10-19cleanup method that does more or less what's neededespie2-11/+20
2009-10-19sync to 1.9.6: two newline fixes:schwarze1-2/+5
* newline before .Rs only below SEE ALSO * newline after .Lb only below LIBRARY
2009-10-19Stop updating the screen when not in output mode, stops copy mode gettingnicm1-1/+4
confused.
2009-10-19sync to 1.9.6: u_char lives in <sys/types.h>schwarze3-3/+9
noticed by uqs at spoerlein dot net on FreeBSD, where <stdlib.h> does not include <sys/types.h>
2009-10-19sync to 1.9.6: here is the sync of special characters to new groffschwarze2-242/+360
as mentioned in the preceding manual commit (oops)