summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-11-23 21:50:08 -0800
committerGuy Harris <guy@alum.mit.edu>2015-11-24 05:50:50 +0000
commit1d60bcdae5cca062e1e9ade2cf041b61a6c28e5d (patch)
treef7bce29b07e45059dd970139e5c6159c6a9096cd
parent1e52fad16a89afdf9eaea8e50ff982df5fd2b8bb (diff)
downloadwireshark-1d60bcdae5cca062e1e9ade2cf041b61a6c28e5d.tar.gz
Fix indentation.
Change-Id: I2a64b9919d257ee0f7a57ba40c33bea1690ae0ad Reviewed-on: https://code.wireshark.org/review/12087 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/dissectors/packet-ber.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ber.c b/epan/dissectors/packet-ber.c
index a7942a29da..7016aeb7ac 100644
--- a/epan/dissectors/packet-ber.c
+++ b/epan/dissectors/packet-ber.c
@@ -3626,7 +3626,7 @@ dissect_ber_GeneralizedTime(gboolean implicit_tag, asn1_ctx_t *actx, proto_tree
ret = sscanf( tmpstr, "%14d%1[.,+-Z]%4d%1[+-Z]%4d", &tmp_int, first_delim, &first_digits, second_delim, &second_digits);
/* tmp_int does not contain valid value bacause of overflow but we use it just for format checking */
if (ret < 1) {
- /* Nothing matched */
+ /* Nothing matched */
goto invalid;
}