Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-08-03 | almost entirely get rid of the culture of ".h files that include .h files" | Theo de Raadt | |
ok djm, sort of ok stevesk makes the pain stop in one easy step | |||
2006-08-02 | strlcpy/strlcat overload made deraadt@ sick; change to xasprintf. | Ray Lai | |
OK niallo@ | |||
2006-08-02 | rcs_buf_set(), rcs_buf_append, and rcs_buf_fappend should not return | Ray Lai | |
ssize_t. The return values aren't usually checked anyway. Also remove unnecessary casts and improve type usage. OK xsa@ | |||
2006-08-02 | Sync CVS's rcs_expand_keywords() and rcs_kwexp_buf() with RCS. | Ray Lai | |
OK niallo@ | |||
2006-08-02 | Fix a lot of buffer overflows and make the code more binary safe. | Ray Lai | |
Also reduce a lot of redundant for() loops. OK niallo@ | |||
2006-08-01 | clean extra spaces | Kevin Steves | |
2006-08-01 | move #include <stdio.h> out of includes.h | Kevin Steves | |
2006-08-01 | * move sys/queue.h inclusion to sysdef.h (it's system specific) | Jason Wright | |
* add <signal.h> to sysdef.h (needed for sig_atomic_t on linux, and we get it by accident on OpenBSD) * remove <signal.h> from tty.c/spawn.c (not needed now that it's in sysdef.h) ok beck | |||
2006-08-01 | Allow fallback to known_hosts entries without port qualifiers for | Darren Tucker | |
non-standard ports too, so that all existing known_hosts entries will be recognised. Requested by, feedback and ok markus@ | |||
2006-08-01 | Reduce rcs_buf_release() usage, improving binary support. | Ray Lai | |
OK niallo@ | |||
2006-07-31 | Minor KNF. | Ray Lai | |
OK xsa@ | |||
2006-07-30 | order includes to KNF | Kevin Steves | |
2006-07-30 | Remove double variable assignment. | Ray Lai | |
From Bret Lambert <bret dot lambert at gmail dot com> OK krw@ and deraadt@. | |||
2006-07-30 | Sync some whitespace changes from rcs. No binary change. | Ray Lai | |
2006-07-28 | Recalculate buffer length after each expansion. | Ray Lai | |
OK niallo@ | |||
2006-07-27 | unused function | Theo de Raadt | |
2006-07-27 | avoid confusing wording in HashKnownHosts: | Jason McIntyre | |
originally spotted by alan amesbury; ok deraadt | |||
2006-07-27 | Second try at adding binary file support to rcs_expand_keywords(), | Ray Lai | |
using BUFs instead of C strings. Also remove initial keyword search, which is a premature optimization, slower, and apparently too hard for me to get right. OK niallo@ | |||
2006-07-27 | Pull in improper memory allocation from RCS: | Ray Lai | |
> Not were we allocating memory for a pointer array, it wasn't even for > the right variable! Fixes make regress with MALLOC_OPTIONS=PR. > > Found by and fix worked on with Joris. | |||
2006-07-27 | Not were we allocating memory for a pointer array, it wasn't even for | Ray Lai | |
the right variable! Fixes make regress with MALLOC_OPTIONS=PR. Found by and fix worked on with Joris. OK niallo@, tested by pedro@. | |||
2006-07-27 | unused variable | Theo de Raadt | |
2006-07-27 | spacing | Theo de Raadt | |
2006-07-27 | unused variable | Theo de Raadt | |
2006-07-26 | Make tftp atoi() free. | Marcus Glocker | |
2006-07-26 | TIMEOUT* values are not part of the protocol. tftp.h is a namespace | Theo de Raadt | |
export of the protocol. you shall not add non-protocol stuff to such a file, period. | |||
2006-07-26 | move #include <stdlib.h> out of includes.h | Kevin Steves | |
2006-07-26 | Mini KNF. No binary changes. | Marcus Glocker | |
2006-07-26 | Fixing several timeout quirks at tftpd and tftp: | Marcus Glocker | |
- move TIMEOUT* defines to arpa/tftp.h, as they are used several times in tftpd and tftp, and the values are part of the RFC definition. - tftpd and tftp did count the total retransmission time in retries instead in seconds. fixed. - tftpd rexmt timeout was hardcoded by a define and therefore didn't changed when the timeout option was sent. fixed. - limit total retransmission timeout in tftp to also 255 seconds. - replace obvious atoi()'s by strtonum(). ok claudio@ | |||
2006-07-26 | move #include <sys/param.h> out of includes.h | Kevin Steves | |
2006-07-25 | Add bfirstlp(), blastlp() macros, returning the first and last lines | Kjell Wooding | |
of a buffer respectively. Removes an ugly construction than necessitated "go to first line"-type comments throughout the code. No binary change | |||
2006-07-25 | Rename the header line of a buffer to b_headp, from the remarkably | Kjell Wooding | |
unintuitive b_linep. No binary change. | |||
2006-07-25 | move #include <sys/time.h> out of includes.h | Kevin Steves | |
2006-07-25 | need #include <string.h> | Kevin Steves | |
2006-07-24 | eliminate hyphen madness; | Jason McIntyre | |
2006-07-24 | tweaks; | Jason McIntyre | |
2006-07-24 | Adding TFTP Option Extension to the tftp client according to RFC 2347. | Marcus Glocker | |
Implemented options are: - TFTP Blocksize Option, RFC 2348 - TFTP Timeout Interval and Transfer Size Options, RFC 2349 We have now on the tftp client side the same options supported as in our tftp server. ok claudio@ | |||
2006-07-24 | Use 'cp -R' instead of 'cp -r' in the example of the -J option. | Bernd Ahlers | |
ok jmc@ | |||
2006-07-24 | disable tunnel forwarding when no strict host key checking | Kevin Steves | |
and key changed; ok djm@ markus@ dtucker@ | |||
2006-07-23 | #include <signal.h> for sig_atomic_t; need this prior to <sys/param.h> | Kevin Steves | |
move | |||
2006-07-22 | move #include <string.h> out of includes.h | Kevin Steves | |
2006-07-22 | move #include <time.h> out of includes.h | Kevin Steves | |
2006-07-21 | ARGSUSED for signal handler | Kevin Steves | |
2006-07-21 | more ARGSUSED (lint) for dispatch table-driven functions; ok djm@ | Kevin Steves | |
2006-07-21 | Make PermitOpen take a list of permitted ports and act more like most other | Darren Tucker | |
keywords (ie the first match is the effective setting). This also makes it easier to override a previously set PermitOpen. ok djm@ | |||
2006-07-21 | Revert; keywords did not expand. | Ray Lai | |
2006-07-21 | Add binary file support to rcs_expand_keywords(), using BUFs instead | Ray Lai | |
of C strings. OK niallo@ | |||
2006-07-20 | missed some needed #include <unistd.h> when KERBEROS5=no; issue from | Kevin Steves | |
massimo@cedoc.mo.it | |||
2006-07-20 | Chad Dougherty <crd@andrew.cmu.edu> teaches me how to spell 'supported' ↵ | Joris Vink | |
correctly | |||
2006-07-20 | Add blksize option support for tftpd according to RFC 2348. | Marcus Glocker | |
Note: While testing the new option, we noticed that our stable tftpd has a problem if any option is set (e.g. tsize) and you try to put a file. This has nothing todo with our new blksize option. We fix this as next. ok claudio@ | |||
2006-07-19 | Add ForceCommand keyword to sshd_config, equivalent to the "command=" | Darren Tucker | |
key option, man page entry and example in sshd_config. Feedback & ok djm@, man page corrections & ok jmc@ |