From 6362c530d0432e0cf17d6da4319fab7ea8091122 Mon Sep 17 00:00:00 2001 From: jkh Date: Fri, 18 Feb 2000 07:00:01 +0000 Subject: While looking for a bug, tripped over style issues with added code. Fix them. --- usr.sbin/pkg_install/delete/main.c | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'usr.sbin/pkg_install/delete/main.c') diff --git a/usr.sbin/pkg_install/delete/main.c b/usr.sbin/pkg_install/delete/main.c index 5b2341e..a1c5ba4 100644 --- a/usr.sbin/pkg_install/delete/main.c +++ b/usr.sbin/pkg_install/delete/main.c @@ -82,26 +82,21 @@ main(int argc, char **argv) argv += optind; /* Get all the remaining package names, if any */ - while (*argv) - { - if( (pkgs_split = rindex(*argv, (int) '/')) != NULL ) - { - while( !isalpha(*(pkgs_split+1)) ) - { + while (*argv) { + if ((pkgs_split = rindex(*argv, (int)'/')) != NULL) { + while (!isalpha(*(pkgs_split + 1))) { *pkgs_split = '\0'; - if ( (pkgs_split = rindex(*argv, (int) '/')) == NULL ) + if ((pkgs_split = rindex(*argv, (int) '/')) == NULL) pkgs_split = *argv; } - if(pkgs_split != NULL) - { + if (pkgs_split != NULL) { if (*pkgs_split == '/') pkgs_split++; *pkgs = pkgs_split; pkgs++; } } - else - { + else { *pkgs = *argv; pkgs++; } -- cgit v1.1