Skip to content

Commit

Permalink
Fix RCON authentication failed test
Browse files Browse the repository at this point in the history
  • Loading branch information
klightspeed committed Sep 30, 2016
1 parent 4617292 commit 2bc099f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added tools/.arkmanager.swp
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/arkmanager
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ rconcmd() {
my $reqid = 1;
sendpkt($sock, $reqid, 3, $password);
my ($resid, $restype, $rcvbody) = recvpkt($sock);
die "Authentication failed" if $resid == -1;
die "Authentication failed" if $resid == -1 or $resid == 0xFFFFFFFF;
}
my $port = $ARGV[0];
Expand Down

0 comments on commit 2bc099f

Please sign in to comment.