diff options
Diffstat (limited to 'ftp_wizard')
-rwxr-xr-x | ftp_wizard/Proftpd.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftp_wizard/Proftpd.pm b/ftp_wizard/Proftpd.pm index ee6a9bfb..a2ef0f66 100755 --- a/ftp_wizard/Proftpd.pm +++ b/ftp_wizard/Proftpd.pm @@ -112,7 +112,7 @@ $o->{pages} = { next => 'config', }, error_shell => { - name => N("I can't find bash in list of shells! It seems you have modified it by hand ! Please correct."), + name => N("I can't find bash in list of shells! It seems you have modified it by hand! Please correct."), no_back => 1, end => 1, next => 0, @@ -188,7 +188,7 @@ sub check_dir { sub get_dir { my $file = "/etc/proftpd.conf"; - die "no FTP configuration file found ! warning." if !-f $file; + die "no FTP configuration file found! warning." if !-f $file; local *NEW; open(NEW, "< $file") or die "error while opening $file: $!"; @@ -254,7 +254,7 @@ sub do_it { my $wiz_ftp_internal = $o->{var}{wiz_ftp_external} ? 1 : true $o->{var}{wiz_ftp_internal}; my $wiz_ftp_external = true $o->{var}{wiz_ftp_external}; my $file = "/etc/proftpd.conf"; - die "no FTP configuration file found ! warning." if !-f $file; + die "no FTP configuration file found! warning." if !-f $file; MDK::Common::cp_af($file, $file . ".orig"); my $allow; if ($wiz_ftp_internal && !$wiz_ftp_external) { |