aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/k12.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-10-07 12:49:14 -0700
committerGuy Harris <guy@alum.mit.edu>2014-10-07 19:50:08 +0000
commit71550ba98a38508ae90df43bddd0644b2df2f717 (patch)
tree32705bb55493a9bbef53a9683d08d5170f71446e /wiretap/k12.c
parentd98debe6d04e3b2a07c8c9a03ad3a4de54ccbc27 (diff)
Make the code a bit more like the pre-new-APIs code.
Change-Id: I40282d8825936d24480c9b77e2e7d9374b1de6b5 Reviewed-on: https://code.wireshark.org/review/4534 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/k12.c')
-rw-r--r--wiretap/k12.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/wiretap/k12.c b/wiretap/k12.c
index f9b1c3ed80..6dd95e680b 100644
--- a/wiretap/k12.c
+++ b/wiretap/k12.c
@@ -854,8 +854,9 @@ int k12_open(wtap *wth, int *err, gchar **err_info) {
if ( !wtap_read_bytes(wth->fh,header_buffer,K12_FILE_HDR_LEN,err,err_info) ) {
K12_DBG(1,("k12_open: FILE HEADER TOO SHORT OR READ ERROR"));
- if (*err != WTAP_ERR_SHORT_READ)
+ if (*err != WTAP_ERR_SHORT_READ) {
return -1;
+ }
return 0;
}