diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-12 22:27:33 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-12 22:27:33 +0100 |
commit | c6b3bbe2b991f4f87ca1f8214f43c13a5a73f385 (patch) | |
tree | 5eadc1e35464be6ec748793060d92b12fa637052 /cipher.c | |
parent | Whitespace (diff) | |
download | openssh-c6b3bbe2b991f4f87ca1f8214f43c13a5a73f385.tar.xz openssh-c6b3bbe2b991f4f87ca1f8214f43c13a5a73f385.zip |
- Fix compilation on systems with AFS. Reported by
aloomis@glue.umd.edu
- Fix installation on Solaris. Reported by
Gordon Rowell <gordonr@gormand.com.au>
- Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
- Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
- Compile fix from David Agraz <dagraz@jahoopa.com>
- Avoid compiler warning in bsd-snprintf.c
- Added pam_limits.so to default PAM config. Suggested by
Jim Knoble <jmknoble@pobox.com>
Diffstat (limited to 'cipher.c')
-rw-r--r-- | cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$Id: cipher.c,v 1.8 1999/11/25 00:54:58 damien Exp $"); +RCSID("$Id: cipher.c,v 1.9 1999/12/12 21:27:33 damien Exp $"); #include "ssh.h" #include "cipher.h" @@ -111,7 +111,7 @@ swap_bytes(const unsigned char *src, unsigned char *dst_, int n) void (*cipher_attack_detected) (const char *fmt,...) = fatal; -static inline void +static INLINE void detect_cbc_attack(const unsigned char *src, unsigned int len) { |