summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diffdir.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-07-13s/timing_safe_cmp/timingsafe_bcmp/gdjm9-23/+23
2010-07-13update our recommended hash function to sha256 and note md5 is broken.tedu2-12/+7
ok deraadt jmc millert sobrado
2010-07-13use PHY semaphore on 8275/82576 adapters in addition to 80003es2lan.jsg1-4/+6
From SAITOH Masanobu. Confirmed to fix pr 6427, and should fix 6301 as well. Tested by a bunch of people, and discussed with claudio during c2k10.
2010-07-13Don't silently overwrite untracked local files with newly-addednicm1-4/+11
repository files. slightly earlier version ok zinovik xsa
2010-07-13Test for the awesome let's-silently-overwrite-local-files bug.nicm1-2/+18
2010-07-13delete unnccessary includederaadt1-3/+1
2010-07-13rename some thread related interfaces so they are logicalderaadt3-14/+14
2010-07-13regress for merge bug.nicm1-2/+17
2010-07-13Do not put the file into conflict if it is no longer modified (user hasnicm1-4/+1
edited it back to repository state). ok zinovik
2010-07-13PR 6423 fix for cvs too, requested by xsa@.nicm1-2/+2
2010-07-13Don't read before the beginning of the log message if it is zero-lengthnicm1-2/+2
(possible when it comes from stdin). Tweaked version of a fix from Peter Hendrickson in PR 6423. ok deraadt
2010-07-13fix overflow of dirsize; from FreeBSD; PR 6426; ok beck@ millert@otto1-2/+5
2010-07-13Do not put a data buffer on the stack; malloc it (we will use dma_allocderaadt1-4/+12
later, when we trust it) ok matthew
2010-07-13need pool.h to initialize the dma allocatorderaadt1-1/+2
2010-07-13dma_alloc() and dma_free(). This is a thin shim on top of a bag ofderaadt4-3/+90
pools, sized by powers of 2, which are constrained to dma memory. ok matthew tedu thib
2010-07-13handle Tm, like in tiff2psespie1-2/+2
2010-07-13work around a strange problem in locality of @_ by copying stuff.espie1-4/+4
okay millert@
2010-07-13Fix (pflow) display in rule printing. Spotted by dhill@, ok henning@sthen1-1/+3
2010-07-13Fix dmesg printing.kettenis1-6/+5
ok krw@, claudio@
2010-07-13- find.fp_wsize *= find.fp_mss, 1;henning1-2/+2
+ find.fp_wsize *= find.fp_mss; From: Ed Schouten <ed at FreeBSD.org>
2010-07-13Avoid double free in ldap modify requests. The values received in themartinh2-13/+35
modify request is linked into the stored ber structure, and then both are freed. Fix this by unlinking the values from the request.
2010-07-13When cleaning /tmp at boot, run the slower find unconditionally.sthen1-2/+3
Previously if the quick rm -rf failed, find was not run, so some files were not removed. Looks good to tedu@.
2010-07-13implement a timing_safe_cmp() function to compare memory without leakingdjm9-23/+38
timing information by short-circuiting like memcmp() and use it for some of the more sensitive comparisons (though nothing high-value was readily attackable anyway); "looks ok" markus@
2010-07-13Fix a broken mask for core temperature 1 and 2, and bias properly for degC.mlarkin1-2/+6
Tested on Thinkpad T510.
2010-07-13no more rmd160(1);jmc2-6/+4
2010-07-13no need for userland to refer to section 2/3 pages;jmc3-12/+9
2010-07-13syncderaadt2-2/+2
2010-07-13Fix PR 6417: if we're starting a thread and there's no other threadsguenther1-2/+3
running, then we need to start a gc thread...except when this is the very call to start a gc thread! "This works for me" marc@
2010-07-13Fix PR 6376: restore more thread library state if execve fails,guenther3-46/+55
including the scheduling timer, sigmask, fd nonblocking status, and handling of the signals used by the thread library. ok marc@, additional testing by ajacoutot@
2010-07-13Merge release 1.10.4 (all code by kristaps@), providing four new features:schwarze31-1002/+1526
1) Proper .Bk support: allow output line breaks at input line breaks, but keep input lines together in the output, finally fixing synopses like aucat(1), mail(1) and tmux(1). 2) Mostly finished -Tps (PostScript) output. 3) Implement -Thtml output for .Nm blocks and .Bk -words. 4) Allow iterative interpolation of user-defined roff(7) strings. Also contains some minor bugfixes and some performance improvements.
2010-07-13Correct comment. scsi_sense_data is now 18 bytes, not 32.krw1-2/+2
2010-07-12replace rmd160 links with sha256. it's way more popular and more better, too.tedu5-30/+41
too many oks to enumerate. while here, add Xr to the relevant libc functions in each page.
2010-07-12expand %h to the hostname in ssh_config Hostname options. While thisdjm2-9/+14
sounds useless, it is actually handy for working with unqualified hostnames: Host *.* Hostname %h Host * Hostname %h.example.org "I like it" markus@
2010-07-12Make ExitOnForwardFailure work with fork-after-authentication ("ssh -f")djm1-3/+8
for protocol 2. ok markus@
2010-07-12Update to 1.4.14b.nicm6-23/+67
From their change log: o Fix memory-leak of signal handler array with kqueue. [backport] o Make evutil_make_socket_nonblocking() leave any other flags alone. o Adjusted fcntl() retval comparison on evutil_make_socket_nonblocking(). o Re-add event_siglcb; some old code _was_ still using it. :( o Fix a free(NULL) in min_heap.h o Clean up properly when adding a signal handler fails. Also a local change to use an int rather than a long for fcntl(). ok guenther deraadt
2010-07-12document gcc4; requested by bradjmc1-12/+9
2010-07-12ksh.1: add ((, )), ]], and `name' to the list of reserved words for compoundsjmc2-12/+134
sh.1: add ]] and `name' to the list; additionally document the commands `select' (requested by Ross L Richardson) and [[ ok millert sobrado
2010-07-12missed one next -> return, as noticed by marco@espie1-2/+2
2010-07-12Merge duplicate log messages into one log_warn().bluhm5-91/+31
ok claudio@
2010-07-12need to copy f() parameters, otherwise strange bugs with sub expressionsespie2-5/+24
may occur (bug in locality in @_ ?) Add missing bagage to State.pm to be able to interact directly with Makewhatis, later.
2010-07-12After forking, clear the 'thread joining this one' pointer in the child,guenther1-1/+4
as the child only has the one thread remaining. ok marc@
2010-07-11remove unused variable and unused static prototype.chl2-5/+2
ok nicm@
2010-07-11Return the command client return code with MSG_EXIT now that MSG_ERROR andnicm5-20/+39
MSG_PRINT are unused. New clients should be compatible with old tmux servers but vice versa may print an error.
2010-07-11bcrypt_gensalt is already declared in pwd.hdhill1-2/+1
"sure" deraadt@
2010-07-11typomiod1-2/+2
2010-07-11move compare into LibSpec, it's not so specific to Signature after allespie2-17/+15
2010-07-11sort SEE ALSO;jmc1-4/+4
2010-07-11display updateset name alongside collisionreport (turns out it's notespie2-6/+7
always obvious)
2010-07-11tie back to bsd.port.mk, to make REVISION and EPOCH more obvious.espie1-2/+10
2010-07-11thinko (found by Daniel Dickman)espie1-4/+4