Skip to content

Commit

Permalink
Fix library path
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed May 14, 2014
1 parent a5267e0 commit f1daffc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fail2ban/restart.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use strict;
use warnings;
require './fail2bab-lib.pl';
require './fail2ban-lib.pl';
our (%text);
&error_setup($text{'restart_err'});
my $err = &restart_fail2ban_server();
Expand Down
2 changes: 1 addition & 1 deletion fail2ban/start.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use strict;
use warnings;
require './fail2bab-lib.pl';
require './fail2ban-lib.pl';
our (%text);
&error_setup($text{'start_err'});
my $err = &start_fail2ban_server();
Expand Down
2 changes: 1 addition & 1 deletion fail2ban/stop.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use strict;
use warnings;
require './fail2bab-lib.pl';
require './fail2ban-lib.pl';
our (%text);
&error_setup($text{'stop_err'});
my $err = &stop_fail2ban_server();
Expand Down

0 comments on commit f1daffc

Please sign in to comment.