From: vague666 Date: Thu, 4 May 2023 18:44:46 +0000 (+0200) Subject: [identd] typo X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=950959ff1a213277188d2bad11a1df605ca8898f;p=irssi-scripts.irssi.org.git [identd] typo --- diff --git a/scripts/identd.pl b/scripts/identd.pl index aa883b3..f81111a 100644 --- a/scripts/identd.pl +++ b/scripts/identd.pl @@ -61,7 +61,7 @@ SCRIPTHELP_EOF sub start_ident_server { my $port = Irssi::settings_get_int('identd_port') // 8113; Irssi::print("Identd - starting...") if VERBOSE; - $ident_server = IO::Socket::INET->new( Proto => 'tcp', LocalAddr => '0.0.0.0' , LocalPort => $port, Listen => SOMAXCONN, ReusePort => 1) or print "Cam't bind to port $port, $@"; + $ident_server = IO::Socket::INET->new( Proto => 'tcp', LocalAddr => '0.0.0.0' , LocalPort => $port, Listen => SOMAXCONN, ReusePort => 1) or print "Can't bind to port $port, $@"; if(!$ident_server) { Irssi::print("Identd - couldn't start server, $@", MSGLEVEL_CLIENTERROR) if VERBOSE; $started = 0;