aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/erf.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-11-08 17:17:57 +0000
committerBill Meier <wmeier@newsguy.com>2013-11-08 17:17:57 +0000
commit5a0809c718374e0162afb1fc1df8497f942d18fc (patch)
treefc7c486e0f93038e1f473a6bf60fc76a8610b782 /wiretap/erf.c
parent6159e98cd38ba8afa4e6587b75dfd82250357fd1 (diff)
(Trivial) whitespace cleanup (mostly trailing whitespace).
svn path=/trunk/; revision=53172
Diffstat (limited to 'wiretap/erf.c')
-rw-r--r--wiretap/erf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/wiretap/erf.c b/wiretap/erf.c
index 6e7c782b00..238809390c 100644
--- a/wiretap/erf.c
+++ b/wiretap/erf.c
@@ -607,10 +607,10 @@ static gboolean erf_dump(
if(!wtap_dump_file_write(wdh, pd, phdr->caplen, err)) return FALSE;
wdh->bytes_dumped += phdr->caplen;
- /*XXX: this pads the record to its original length, which is fine in most
- * cases. However with >MAX_ERF_EHDR unnecessary padding will be added, and
- * if the record was truncated this will be incorrectly treated as payload.
- * More than 8 extension headers is unusual though, only the first 8 are
+ /*XXX: this pads the record to its original length, which is fine in most
+ * cases. However with >MAX_ERF_EHDR unnecessary padding will be added, and
+ * if the record was truncated this will be incorrectly treated as payload.
+ * More than 8 extension headers is unusual though, only the first 8 are
* written out anyway and fixing properly would require major refactor.*/
while(wdh->bytes_dumped < alignbytes){
if(!wtap_dump_file_write(wdh, "", 1, err)) return FALSE;