From eaa18fd91c51c136ff6ec607d46d32b87a2ea34f Mon Sep 17 00:00:00 2001 From: Andreas Guldstrand Date: Sat, 14 Nov 2015 03:03:55 +0100 Subject: Remove prototypes and make sure subs are called with () --- sboconfig | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'sboconfig') diff --git a/sboconfig b/sboconfig index c210a8a..7c854b8 100755 --- a/sboconfig +++ b/sboconfig @@ -21,7 +21,7 @@ use File::Temp qw(tempfile);; my $self = basename($0); -sub show_usage() { +sub show_usage { print < 'NOCLEAN', @@ -75,7 +75,7 @@ if (exists $options{list}) { exit 0; } -show_usage and exit 0 unless keys %options > 0; +show_usage() and exit 0 unless keys %options > 0; # setup what's being changed, sanity check. my %changes; @@ -86,19 +86,19 @@ while (my ($key, $value) = each %valid_confs) { my $warn = 'You have provided an invalid parameter for'; if (exists $changes{NOCLEAN}) { - usage_error "$warn -c" unless $changes{NOCLEAN} =~ /^(TRUE|FALSE)$/; + usage_error("$warn -c") unless $changes{NOCLEAN} =~ /^(TRUE|FALSE)$/; } if (exists $changes{DISTCLEAN}) { - usage_error "$warn -d" unless $changes{DISTCLEAN} =~ /^(TRUE|FALSE)$/; + usage_error("$warn -d") unless $changes{DISTCLEAN} =~ /^(TRUE|FALSE)$/; } if (exists $changes{JOBS}) { - usage_error "$warn -j" unless $changes{JOBS} =~ /^(\d+|FALSE)$/; + usage_error("$warn -j") unless $changes{JOBS} =~ /^(\d+|FALSE)$/; } if (exists $changes{PKG_DIR}) { - usage_error "$warn -p" unless $changes{PKG_DIR} =~ qr#^(/|FALSE$)#; + usage_error("$warn -p") unless $changes{PKG_DIR} =~ qr#^(/|FALSE$)#; } if (exists $changes{SBO_HOME}) { - usage_error "$warn -s" unless $changes{SBO_HOME} =~ qr#^/#; + usage_error("$warn -s") unless $changes{SBO_HOME} =~ qr#^/#; } # safely modify our conf file; write its contents to a temp file, modify the @@ -107,14 +107,14 @@ if (exists $changes{SBO_HOME}) { # them all at once, instead of only a single one and having to call it once for # each option specified to the script. sub config_write { - exists $_[1] or script_error 'config_write requires two arguments.'; + exists $_[1] or script_error('config_write requires two arguments.'); my ($key, $val) = @_; if (! -d $conf_dir) { - mkdir $conf_dir or usage_error "Unable to create $conf_dir. Exiting."; + mkdir $conf_dir or usage_error("Unable to create $conf_dir. Exiting."); } if (-f $conf_file) { my $tempfh = tempfile(DIR => $tempdir); - my ($conffh, $exit) = open_read $conf_file; + my ($conffh, $exit) = open_read($conf_file); if ($exit) { warn $conffh; exit $exit; -- cgit v1.2.3