From: Russ Allbery Date: Fri, 26 Aug 2005 08:01:24 +0000 (+0000) Subject: Also use inet_ntoa before comparing to textual IP addresses. X-Git-Tag: debian/1.4rc1-1~4 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=acb0d5f541105f674b19054479c25b535cf4b33c;p=packages%2Fo%2Fopenafs.git Also use inet_ntoa before comparing to textual IP addresses. --- diff --git a/debian/afs-newcell b/debian/afs-newcell index abddb18e4..725d526b9 100644 --- a/debian/afs-newcell +++ b/debian/afs-newcell @@ -157,7 +157,7 @@ while () { while () { last if /^>/; my ($dbserver) = split ' '; - if ($dbserver eq $ip) { + if ($dbserver eq inet_ntoa($ip)) { $found = 1; last; }