summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2013-04-23create a method to print the unp_ino (ino_t) properly once it becomesTheo de Raadt
bigger
2013-04-23simple large ino_t handlingTheo de Raadt
2013-04-23handle large ino_t; ok millertTheo de Raadt
2013-04-23use xasprintf instead of a series of strlcats and strdup. ok djmTed Unangst
2013-04-23rework to simplify, check errors against -1, remove casts, etc.Ted Unangst
2013-04-23remove TIMESTAMP abstraction layer, prodded by theo.Marc Espie
while there, clean up includes. use strtoll for ar timestamps (pretty much unused in reality, more standard conforming than anything) use idea from Todd to adapt to time_t being 32 bits OR 64 bits (pedantically correct: INT_MIN would work just fine up to 1910 or so...) okay millert@, gone thru a make build.
2013-04-23add EXIT STATUS; original diff from Ryan Kavanagh, but i've used theJason McIntyre
(similar) text from freebsd;
2013-04-22When using choose-tree -u, start with the current windowNicholas Marriott
highlighted. From Thomas Adam.
2013-04-22Get session of -t window rather than client's window.Nicholas Marriott
2013-04-22Call recalculate_sizes() after killing window in case it is in a groupedNicholas Marriott
session, from Daniel Ralston.
2013-04-22Use lockf which is more portable than flock, from Dagobert Michelsen.Nicholas Marriott
2013-04-22unifdef non full TIMESPEC codeMarc Espie
2013-04-22typo in debug output: evitval->exitvalDarren Tucker
2013-04-21Don't let server_client_check_focus use a dead bufferevent, from RomainNicholas Marriott
Francoise.
2013-04-21Convert select() to poll(). OK deraadt@Todd C. Miller
2013-04-20use poll() instead of select() with a limited-size fd_setTheo de Raadt
2013-04-20Xr encrypt(1) to give people a hint if they just want a password stringTed Unangst
2013-04-20use poll() instead of select() [with a fixed size fd_set]Theo de Raadt
ok florian
2013-04-20adjust commentTheo de Raadt
2013-04-19Constrain the 2038 check to only when sizeof(time_t) == sizeof(int).Theo de Raadt
Adding more powerful checking is too difficult. We'll fix this problem by moving to 64-bit time_t.. and once we do, we don't want this code to falsely trigger. ok millert
2013-04-19handle large numbers. this fixes time_t beyond 2038, constrains theTheo de Raadt
range of i_num correctly, and now handles files > 4GB in size on 32-bit machines. ok otto millert
2013-04-19match behavior of current sendmail-based vacation: eliminate the concept thatOkan Demirmen
an interval (-r) of 0 indicates sending a reply to every message (per sender), but rather match the 'non-numeric' case where only one reply will be sent (per sender). default remains unchanged. vacation database should be reinitalized sometime before 2038. removes the need for time_t casts. discussed with deraadt; ok millert
2013-04-19remove duplicated list entry pointed out by naddy@Damien Miller
2013-04-19add -Q to usage; reminded by jmc@Damien Miller
2013-04-19add the ability to query supported ciphers, MACs, key type and KEXDamien Miller
algorithms to ssh. Includes some refactoring of KEX and key type handling to be table-driven; ok markus@
2013-04-19reintroduce 1.262 without the connection-killing bug:Damien Miller
fatal() when ChrootDirectory specified by running without root privileges; ok markus@
2013-04-19fix some memory leaks; bz#2088 ok dtucker@Damien Miller
2013-04-19document the requirment that the AuthorizedKeysCommand be owned by root;Damien Miller
ok dtucker@ markus@
2013-04-18- use FD_CLOEXEC instead of 1Okan Demirmen
- use O_CLOEXEC with open() instead of open/fcntl from David Hill ok otto@
2013-04-18improve time_t handling here, tooTheo de Raadt
2013-04-18improve time_t printing; ok claudioTheo de Raadt
2013-04-18struct timezone is so 1980Theo de Raadt
2013-04-18make "sftp -q" do what it says on the sticker: hush everything but errors;Damien Miller
ok dtucker@
2013-04-17Handle greater time_t, so that .a files work after 2038.Theo de Raadt
ok miod
2013-04-17zlib info header is 32-bit; handle for localtime() call; ok millertTheo de Raadt
2013-04-17Adapt cron and at for future large time_t and tv_sec types. These were someTheo de Raadt
of the harder programs to adapt, so let me know if problems happen. tested by guenther, gilles, chl, others
2013-04-17variety of fixes to correct large time_t code. it is quite broken upstream.Theo de Raadt
ok chl
2013-04-17(long long) and %lld for time_t outputTheo de Raadt
ok nicm
2013-04-17revert rev 1.262; it fails because uid is already set here. ok djm@Darren Tucker
2013-04-17%zu format for size_t.Nicholas Marriott
2013-04-17remove time_t cast not needed; ok guentherTheo de Raadt
2013-04-16handle large time_t types; ok millertTheo de Raadt
2013-04-16time(NULL) looks better than time(0)Theo de Raadt
2013-04-16handle long long tv_sec; ok millertTheo de Raadt
2013-04-16handle large time_t variables; ok guentherTheo de Raadt
2013-04-16remove wrong casts; ok millertTheo de Raadt
2013-04-16remove casts to time_t * which are not neededTheo de Raadt
2013-04-16cannot inspect out_name via a time_t pointer; ok guentherTheo de Raadt
2013-04-16bzero struct tm before use; ok millertTheo de Raadt
2013-04-15Remove CTL_USER hierarchy from sysctl()Philip Guenther
(Use sysconf() or confstr() instead) ok miod@ millert@