From f932e2c27685362954c44e5a6c4aa01c8cccb168 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sun, 22 Nov 1998 09:33:08 +0000 Subject: [PATCH] more braces git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5222 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/otp/otpprint.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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); }