diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-25 18:29:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-25 18:29:36 +0000 |
commit | e56c9adfeb19ca874521595a6fbc25b35b9705d3 (patch) | |
tree | 11b0a5d365e9493e74ef856fc50d0af219460359 /usr.bin/ssh/packet.c | |
parent | 4fddd5f25718f167f07fc1e4b4bec7ce00a0e0a5 (diff) |
needed casts (always will be needed)
Diffstat (limited to 'usr.bin/ssh/packet.c')
-rw-r--r-- | usr.bin/ssh/packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c index 7a0cff03ad0..0e411f6d857 100644 --- a/usr.bin/ssh/packet.c +++ b/usr.bin/ssh/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.128 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: packet.c,v 1.129 2006/03/25 18:29:35 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1542,7 +1542,7 @@ packet_send_ignore(int nbytes) for (i = 0; i < nbytes; i++) { if (i % 4 == 0) rnd = arc4random(); - packet_put_char(rnd & 0xff); + packet_put_char((u_char)rnd & 0xff); rnd >>= 8; } } |