1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-03 06:38:24 +00:00

fix argument for socket version get

This commit is contained in:
Younes Ichiche 2020-04-05 13:52:55 +02:00 committed by Lars Kruse
parent bf2eff5c6c
commit 439c0a20b4
4 changed files with 4 additions and 4 deletions

View file

@ -91,7 +91,7 @@ sub rtorrent_version_lower_than {
{
socket( SOCK, PF_UNIX, SOCK_STREAM, 0 ) or die;
connect( SOCK, sockaddr_un( $socket ) ) or die $!;
get_rtorrent_version $port;
get_rtorrent_version $socket;
close (SOCK);
}
} else {