summaryrefslogtreecommitdiff
path: root/epan/asn1.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-02-25 15:42:35 -0500
committerBill Meier <wmeier@newsguy.com>2014-02-25 20:46:49 +0000
commit11b5c15fdb815a2af400bfddef944dbac41a434a (patch)
treee7217ebcff4d4d9f7f95d0342b6776547e5537c3 /epan/asn1.c
parentc55c57ad72acda8cbce2841bc237f966bad5ae5b (diff)
downloadwireshark-11b5c15fdb815a2af400bfddef944dbac41a434a.tar.gz
Remove trailing whitespace
Change-Id: I8116f63ff88687c8db3fd6e8e23b22ab2f759af0 Reviewed-on: https://code.wireshark.org/review/385 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/asn1.c')
-rw-r--r--epan/asn1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/asn1.c b/epan/asn1.c
index 4ff44bb28e..d7a90d19fb 100644
--- a/epan/asn1.c
+++ b/epan/asn1.c
@@ -176,7 +176,7 @@ void rose_ctx_clean_data(rose_ctx_t *rctx) {
asn1_ctx_t *get_asn1_ctx(void *ptr) {
asn1_ctx_t *actx = (asn1_ctx_t*)ptr;
- if (!asn1_ctx_check_signature(actx))
+ if (!asn1_ctx_check_signature(actx))
actx = NULL;
return actx;
@@ -186,13 +186,13 @@ rose_ctx_t *get_rose_ctx(void *ptr) {
rose_ctx_t *rctx = (rose_ctx_t*)ptr;
asn1_ctx_t *actx = (asn1_ctx_t*)ptr;
- if (!asn1_ctx_check_signature(actx))
+ if (!asn1_ctx_check_signature(actx))
actx = NULL;
if (actx)
rctx = actx->rose_ctx;
- if (!rose_ctx_check_signature(rctx))
+ if (!rose_ctx_check_signature(rctx))
rctx = NULL;
return rctx;