]> git.99rst.org Git - irssi-scripts.irssi.org.git/commitdiff
[identd] typo
authorvague666 <redacted>
Thu, 4 May 2023 18:44:46 +0000 (20:44 +0200)
committervague666 <redacted>
Thu, 4 May 2023 18:44:46 +0000 (20:44 +0200)
scripts/identd.pl

index aa883b30dfcc09f63baa7ae7cfa9cc4a2c9f5a2c..f81111a8f772aaeb6c4c8ebd70f822819b6950cf 100644 (file)
@@ -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;
git clone https://git.99rst.org/PROJECT