From d5f936e9c017f884b070f41748ce502a0bb131d7 Mon Sep 17 00:00:00 2001 From: Håkon Nessjøen Date: Thu, 24 Feb 2011 03:06:39 +0100 Subject: Bugfix of two bugs making raw mode unusable/unstable. --- protocol.c | 2 +- udp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol.c b/protocol.c index 848c443..e0220d1 100644 --- a/protocol.c +++ b/protocol.c @@ -48,7 +48,7 @@ int init_packet(struct mt_packet *packet, enum mt_ptype ptype, unsigned char *sr #if BYTE_ORDER == LITTLE_ENDIAN sessionkey = htons(sessionkey); #endif - memcpy(data + 15, &sessionkey, sizeof(sessionkey)); + memcpy(data + 16, &sessionkey, sizeof(sessionkey)); /* Client type: Mac Telnet */ memcpy(data + 14, &mt_mactelnet_clienttype, sizeof(mt_mactelnet_clienttype)); diff --git a/udp.c b/udp.c index 76a68f3..2f8b60f 100644 --- a/udp.c +++ b/udp.c @@ -44,7 +44,7 @@ unsigned short udp_sum_calc(unsigned char *src_addr,unsigned char *dst_addr, uns /* Padding ? */ padd = (len % 2); if (padd){ - data[len + padd]=0; + data[len]=0; } /* header+data */ -- cgit v1.2.3