summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/cipher.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r--usr.bin/ssh/cipher.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c
index 72be90a4068..8a352a8d1be 100644
--- a/usr.bin/ssh/cipher.c
+++ b/usr.bin/ssh/cipher.c
@@ -12,7 +12,7 @@ Created: Wed Apr 19 17:41:39 1995 ylo
*/
#include "includes.h"
-RCSID("$Id: cipher.c,v 1.4 1999/09/28 04:45:36 provos Exp $");
+RCSID("$Id: cipher.c,v 1.5 1999/09/30 05:19:57 deraadt Exp $");
#include "ssh.h"
#include "cipher.h"
@@ -80,9 +80,9 @@ static
void
swap_bytes(const unsigned char *src, unsigned char *dst_, int n)
{
- uint32 *dst = (uint32 *)dst_; /* dst must be properly aligned. */
+ u_int32_t *dst = (u_int32_t *)dst_; /* dst must be properly aligned. */
union {
- uint32 i;
+ u_int32_t i;
char c[4];
} t;