aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/aethra.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-10-27 03:00:03 +0000
committerGuy Harris <guy@alum.mit.edu>2011-10-27 03:00:03 +0000
commitc0db24bf4d6a123ec276aa2a7b2740d9c444d64e (patch)
tree96651d084193e906dba3900195874234bf954385 /wiretap/aethra.c
parent4de661bb9fc1783ea6b1b480758ba8314375b867 (diff)
Fix cut-and-pasteo that happened not to cause a problem on *P64
platforms but failed on *P32 platforms. Remove the debugging code (the above was the problem in question). svn path=/trunk/; revision=39628
Diffstat (limited to 'wiretap/aethra.c')
-rw-r--r--wiretap/aethra.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/wiretap/aethra.c b/wiretap/aethra.c
index e7be877ffe..a4c89cfbc0 100644
--- a/wiretap/aethra.c
+++ b/wiretap/aethra.c
@@ -130,9 +130,6 @@ int aethra_open(wtap *wth, int *err, gchar **err_info)
wth->subtype_read = aethra_read;
wth->subtype_seek_read = aethra_seek_read;
-fprintf(stderr, "sizeof hdr.magic %" G_GINT64_MODIFIER "u, sizeof hdr %" G_GINT64_MODIFIER "u, data_offset %" G_GINT64_MODIFIER "u\n",
-(guint64)sizeof hdr.magic, (guint64)sizeof hdr, wth->data_offset);
-
/*
* Convert the time stamp to a "time_t".
*/
@@ -175,13 +172,7 @@ static gboolean aethra_read(wtap *wth, int *err, gchar **err_info,
/* Read record header. */
if (!aethra_read_rec_header(wth->fh, &hdr, &wth->pseudo_header,
err, err_info))
-{
-if (*err == 0)
-fprintf(stderr, "aethra_read_rec_header() got an EOF\n");
-else
-fprintf(stderr, "aethra_read_rec_header() fails: err %d\n", *err);
return FALSE;
-}
rec_size = pletohs(hdr.rec_size);
if (rec_size < (sizeof hdr - sizeof hdr.rec_size)) {
@@ -193,30 +184,18 @@ fprintf(stderr, "aethra_read_rec_header() fails: err %d\n", *err);
}
wth->data_offset += sizeof hdr;
-fprintf(stderr, "sizeof hdr %" G_GINT64_MODIFIER "u, data_offset %" G_GINT64_MODIFIER "u\n",
-(guint64)sizeof hdr, wth->data_offset);
-
/*
* XXX - if this is big, we might waste memory by
* growing the buffer to handle it.
*/
packet_size = rec_size - (sizeof hdr - sizeof hdr.rec_size);
-fprintf(stderr, "rec_size %u, packet_size %u, sizeof hdr.rec_size %" G_GINT64_MODIFIER "u, delta %" G_GINT64_MODIFIER "u\n",
-rec_size, packet_size, (guint64)sizeof hdr.rec_size,
-(guint64)(sizeof hdr - sizeof hdr.rec_size));
if (packet_size != 0) {
buffer_assure_space(wth->frame_buffer, packet_size);
if (!aethra_read_rec_data(wth->fh, buffer_start_ptr(wth->frame_buffer),
packet_size, err, err_info))
-{
-fprintf(stderr, "aethra_read_rec_data() fails\n");
return FALSE; /* Read error */
-}
wth->data_offset += packet_size;
-fprintf(stderr, "data_offset %" G_GINT64_MODIFIER "u\n",
-wth->data_offset);
}
-fprintf(stderr, "hdr.rec_type %u\n", hdr.rec_type);
} while (hdr.rec_type != AETHRA_PACKET);
msecs = pletohl(hdr.timestamp);
@@ -258,7 +237,7 @@ aethra_read_rec_header(FILE_T fh, struct aethrarec_hdr *hdr,
/* Read record header. */
errno = WTAP_ERR_CANT_READ;
- bytes_read = file_read(hdr, sizeof hdr, fh);
+ bytes_read = file_read(hdr, sizeof *hdr, fh);
if (bytes_read != sizeof *hdr) {
*err = file_error(fh, err_info);
if (*err == 0 && bytes_read != 0)