Use proper negated operator
authorAlvaro Herrera <[email protected]>
Tue, 14 Dec 2010 16:55:14 +0000 (16:55 +0000)
committerAlvaro Herrera <[email protected]>
Tue, 14 Dec 2010 16:55:14 +0000 (16:55 +0000)
git-svn-id: file:///Users/dpage/pgweb/svn-repo/trunk@2784 8f5c7a92-453e-0410-a47f-ad33c8a6b003

archives/bin/resource-common

index 716614a0bccdbe47cd83e3a90484a88382e42280..7a83bcff6fc19d5587db2749201dc35dcbd71c00 100644 (file)
@@ -12,7 +12,7 @@
      have a /.  This could probably be a lot cheaper ... -->
 <ADDRESSMODIFYCODE>
 $addr = $_;
-if (!$addr =~ /\//) {
+if ($addr !~ /\//) {
        $addr =~ s/@/(at)/ ;
        $addr =~ s/\./(dot)/g ;
 }