summaryrefslogtreecommitdiff
path: root/wiretap/netscaler.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-10-06 22:01:12 -0700
committerGuy Harris <guy@alum.mit.edu>2014-10-07 05:01:39 +0000
commitffd48cefa6c468d4cdadd5e562f0d3c63eb4a2d6 (patch)
tree58061a0a150ff180c840de7776c78cf02fd97490 /wiretap/netscaler.c
parent683d657d4977487c073777f156938d6970e2f08b (diff)
downloadwireshark-ffd48cefa6c468d4cdadd5e562f0d3c63eb4a2d6.tar.gz
Whitespace cleanups.
Change-Id: I92f983b2e04defab30eb31c14c484b9f0f582413 Reviewed-on: https://code.wireshark.org/review/4513 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/netscaler.c')
-rw-r--r--wiretap/netscaler.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/wiretap/netscaler.c b/wiretap/netscaler.c
index 7e93378451..03aba5bf74 100644
--- a/wiretap/netscaler.c
+++ b/wiretap/netscaler.c
@@ -1351,7 +1351,7 @@ static gboolean nstrace_seek_read_v10(wtap *wth, gint64 seek_off,
** Read the record header.
*/
if (!wtap_read_bytes(wth->random_fh, (void *)&hdr, sizeof hdr,
- err, err_info))
+ err, err_info))
return FALSE;
/*
@@ -1366,9 +1366,9 @@ static gboolean nstrace_seek_read_v10(wtap *wth, gint64 seek_off,
pd = ws_buffer_start_ptr(buf);
memcpy(pd, (void *)&hdr, sizeof hdr);
if (record_length > sizeof hdr) {
- bytes_to_read = (unsigned int)(record_length - sizeof hdr);
- if (!wtap_read_bytes(wth->random_fh, pd + sizeof hdr, bytes_to_read,
- err, err_info))
+ bytes_to_read = (unsigned int)(record_length - sizeof hdr);
+ if (!wtap_read_bytes(wth->random_fh, pd + sizeof hdr, bytes_to_read,
+ err, err_info))
return FALSE;
}
@@ -1440,7 +1440,7 @@ static gboolean nstrace_seek_read_v20(wtap *wth, gint64 seek_off,
*/
if (hdr.phd_RecordSizeLow & NSPR_V20RECORDSIZE_2BYTES) {
if (!wtap_read_bytes(wth->random_fh, (void *)&hdr.phd_RecordSizeHigh, 1,
- err, err_info))
+ err, err_info))
return FALSE;
hdrlen = 3;
}
@@ -1457,9 +1457,9 @@ static gboolean nstrace_seek_read_v20(wtap *wth, gint64 seek_off,
pd = ws_buffer_start_ptr(buf);
memcpy(pd, (void *)&hdr, hdrlen);
if (record_length > hdrlen) {
- bytes_to_read = (unsigned int)(record_length - hdrlen);
- if (!wtap_read_bytes(wth->random_fh, pd + hdrlen, bytes_to_read,
- err, err_info))
+ bytes_to_read = (unsigned int)(record_length - hdrlen);
+ if (!wtap_read_bytes(wth->random_fh, pd + hdrlen, bytes_to_read,
+ err, err_info))
return FALSE;
}
@@ -1540,8 +1540,8 @@ static gboolean nstrace_seek_read_v30(wtap *wth, gint64 seek_off,
** Is there a third byte? If so, read it.
*/
if (hdr.phd_RecordSizeLow & NSPR_V20RECORDSIZE_2BYTES) {
- if (!wtap_read_bytes(wth->random_fh, (void *)&hdr.phd_RecordSizeHigh, 1,
- err, err_info))
+ if (!wtap_read_bytes(wth->random_fh, (void *)&hdr.phd_RecordSizeHigh, 1,
+ err, err_info))
return FALSE;
hdrlen = 3;
}
@@ -1560,7 +1560,7 @@ static gboolean nstrace_seek_read_v30(wtap *wth, gint64 seek_off,
if (record_length > hdrlen) {
bytes_to_read = (unsigned int)(record_length - hdrlen);
if (!wtap_read_bytes(wth->random_fh, pd + hdrlen, bytes_to_read,
- err, err_info))
+ err, err_info))
return FALSE;
}