0f2e21c9 | 22-Dec-2020 |
Darren Tucker |
Include stdio.h for FILE in misc.h. Fixes build on at least OpenBSD. |
e51dc7fa | 12-Nov-2020 |
Damien Miller |
SELinux has deprecated security_context_t (it was only ever a char* anyway) |
33267fea | 27-Oct-2020 |
Damien Miller |
Remove checks for strict POSIX mkdtemp() We needed a mkdtemp() that accepted template paths that did not end in XXXXXX a long time ago for KRB4, but that code is long deprecated. We
Remove checks for strict POSIX mkdtemp() We needed a mkdtemp() that accepted template paths that did not end in XXXXXX a long time ago for KRB4, but that code is long deprecated. We no longer need to replace mkdtemp() for strictly following POSIX. ok dtucker@
show more ...
|
f9ea6515 | 16-Oct-2020 |
Damien Miller |
logging is now macros, remove function pointers |
86cc8ce0 | 02-Oct-2020 |
Damien Miller |
use relative rather than system include here |
Revision tags: V_8_4_P1 |
|
05c215de | 17-Aug-2020 |
Darren Tucker |
Wrap stdint.h include in ifdef HAVE_STDINT_H. |
eaf2765e | 09-Aug-2020 |
Damien Miller |
sync memmem.c with OpenBSD |
32c63e75 | 04-Aug-2020 |
Damien Miller |
wrap a declaration in the same ifdefs as its use avoids warnings on NetBSD |
c9e3be9f | 04-Aug-2020 |
Damien Miller |
undef TAILQ_CONCAT and friends Needed for NetBSD. etc that supply these macros |
adfdbf12 | 03-Jul-2020 |
Damien Miller |
sync sys-queue.h with OpenBSD upstream needed for TAILQ_CONCAT |
b4556c8a | 19-Jun-2020 |
Darren Tucker |
Add OPENBSD ORIGINAL marker to bcrypt_pbkdf. |
1babb8bb | 19-Jun-2020 |
Darren Tucker |
Extra brackets around sizeof() in bcrypt. Prevents following warning from clang 10: bcrypt_pbkdf.c:94:40: error: expression does not compute the number of elements in this array; e
Extra brackets around sizeof() in bcrypt. Prevents following warning from clang 10: bcrypt_pbkdf.c:94:40: error: expression does not compute the number of elements in this array; element type is ´uint32_tÂ[...] place parentheses around the ´sizeof(uint64_t)´ expression to silence this warning
show more ...
|
Revision tags: V_8_3_P1 |
|
8854724c | 21-Apr-2020 |
Darren Tucker |
Sync rev 1.49. Prevent infinite for loop since i went from ssize_t to size_t. Patch from eagleoflqj via OpenSSH github PR#178, ok djm@, feedback & ok millert@ |
931c50c5 | 05-Apr-2020 |
Damien Miller |
fix inverted test for LibreSSL version |
abe2b245 | 03-Apr-2020 |
Damien Miller |
prefer libcrypto chacha20-poly1305 where possible |
955c4cf4 | 12-Mar-2020 |
Damien Miller |
sync fnmatch.c with upstream to fix another typo |
397f217e | 12-Mar-2020 |
Damien Miller |
another spelling error in comment |
def31bc5 | 12-Mar-2020 |
Damien Miller |
spelling mistakes from https://fossies.org/linux/misc/openssh-8.2p1.tar.gz/codespell.html |
31c9348c | 17-Feb-2020 |
Darren Tucker |
Constify aix_krb5_get_principal_name. Prevents warning about discarding type qualifiers on AIX. |
290c9943 | 17-Feb-2020 |
Darren Tucker |
Check if TILDE is already defined and undef. Prevents redefinition warning on AIX. |
41a2e64a | 17-Feb-2020 |
Darren Tucker |
Prevent unused variable warning. |
d4860ec4 | 17-Feb-2020 |
Darren Tucker |
Check if getpeereid is actually declared. Check in sys/socket.h (AIX) and unistd.h (FreeBSD, DragonFLy and OS X). Prevents undeclared function warning on at least some versions of AIX. |
Revision tags: V_8_2_P1 |
|
9716e8c4 | 27-Nov-2019 |
Michael Forney |
Fix sha2 MAKE_CLONE no-op definition The point of the dummy declaration is so that MAKE_CLONE(...) can have a trailing semicolon without introducing an empty declaration. So, the mac
Fix sha2 MAKE_CLONE no-op definition The point of the dummy declaration is so that MAKE_CLONE(...) can have a trailing semicolon without introducing an empty declaration. So, the macro replacement text should *not* have a trailing semicolon, just like DEF_WEAK.
show more ...
|
0373f9eb | 25-Jan-2020 |
Darren Tucker |
Include signal.h to prevent redefintion of _NSIG. |
e1e97cae | 25-Jan-2020 |
Damien Miller |
include tunnel device path in error message |