diff --git a/appl/otp/otpprint.c b/appl/otp/otpprint.c index 7cc4b84f6..a0a63e8bf 100644 --- a/appl/otp/otpprint.c +++ b/appl/otp/otpprint.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan + * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -117,16 +117,17 @@ main (int argc, char **argv) argc -= optind; argv += optind; - if (hexp) + if (hexp) { if (extendedp) fn = otp_print_hex_extended; else fn = otp_print_hex; - else + } else { if (extendedp) fn = otp_print_stddict_extended; else fn = otp_print_stddict; + } return print (argc, argv, count, alg, fn); }