diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-17 23:43:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-17 23:43:23 +0000 |
commit | 8bc714517c06fbc1faea6c4eabf3e22e93be31da (patch) | |
tree | 4d50ead3d0fe6eb1aefc60ae2887d2af9d95a0df | |
parent | b54d7ae174b72b4a39d892320b42c6b5564f4fd0 (diff) | |
download | drakx-8bc714517c06fbc1faea6c4eabf3e22e93be31da.tar drakx-8bc714517c06fbc1faea6c4eabf3e22e93be31da.tar.gz drakx-8bc714517c06fbc1faea6c4eabf3e22e93be31da.tar.bz2 drakx-8bc714517c06fbc1faea6c4eabf3e22e93be31da.tar.xz drakx-8bc714517c06fbc1faea6c4eabf3e22e93be31da.zip |
fix typo
-rwxr-xr-x | perl-install/standalone/interactive_http/interactive_http.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/interactive_http/interactive_http.cgi b/perl-install/standalone/interactive_http/interactive_http.cgi index 48dd06fb8..935a4a765 100755 --- a/perl-install/standalone/interactive_http/interactive_http.cgi +++ b/perl-install/standalone/interactive_http/interactive_http.cgi @@ -62,7 +62,7 @@ sub force_exit_dead_prog { sub spawn_server { my ($prog) = @_; - my @authorised_progs = map { chomp($_) } cat_('/etc/drakxtools_http/authorised_progs'); + my @authorised_progs = map { chomp_($_) } cat_('/etc/drakxtools_http/authorised_progs'); member($prog, @authorised_progs) or error("You tried to call a non-authorised program"); fork and return; |