aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/iseries.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-03-09 21:18:55 +0000
committerGerald Combs <gerald@wireshark.org>2009-03-09 21:18:55 +0000
commitcc739fecb0300906438b19f874e615ead80e419b (patch)
tree8858970c6086a4fa93b4c9f804d5b46ef79df9c5 /wiretap/iseries.c
parente4892bb6c305211bf5b3fc1ba56a87981368eff8 (diff)
P64 fixes.
svn path=/trunk/; revision=27683
Diffstat (limited to 'wiretap/iseries.c')
-rw-r--r--wiretap/iseries.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/wiretap/iseries.c b/wiretap/iseries.c
index b5a202ab2b..eb786f9cf9 100644
--- a/wiretap/iseries.c
+++ b/wiretap/iseries.c
@@ -393,7 +393,7 @@ iseries_seek_next_packet (wtap * wth, int *err)
else
{
/* Else buflen is just length of the ASCII string */
- buflen = strlen (buf);
+ buflen = (long) strlen (buf);
}
/* If packet header found return the offset */
if (strncmp (buf + 80, ISERIES_PKT_MAGIC_STR, ISERIES_PKT_MAGIC_LEN)
@@ -623,7 +623,7 @@ iseries_parse_packet (wtap * wth, FILE_T fh,
else
{
/* Else bytes to rewind is just length of ASCII string */
- buflen = strlen (data);
+ buflen = (int) strlen (data);
}
/* If this is a IP header hex string then set flag */
@@ -768,12 +768,12 @@ iseries_parse_packet (wtap * wth, FILE_T fh,
buffer_assure_space (wth->frame_buffer, ISERIES_MAX_PACKET_LEN);
buf = buffer_start_ptr (wth->frame_buffer);
/* Convert ascii data to binary and return in the frame buffer */
- iseries_parse_hex_string (asciibuf, buf, strlen (asciibuf));
+ iseries_parse_hex_string (asciibuf, buf, (int) strlen (asciibuf));
}
else
{
/* Convert ascii data to binary and return in the frame buffer */
- iseries_parse_hex_string (asciibuf, pd, strlen (asciibuf));
+ iseries_parse_hex_string (asciibuf, pd, (int) strlen (asciibuf));
}
/* free buffers allocs and return */