]> err.no Git - dpkg/commitdiff
fixup html-escaped left from a patch
authorWichert Akkerman <wakkerma@debian.org>
Fri, 15 Sep 2000 22:54:42 +0000 (22:54 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Fri, 15 Sep 2000 22:54:42 +0000 (22:54 +0000)
scripts/update-alternatives.pl

index c09d6d8aa3f4ce022a177135878b3e82d551905b..a43ef0c712241c53c5d03cc8f5aa19984535776e 100755 (executable)
@@ -518,10 +518,10 @@ sub config_alternatives {
                        "$altdir/$slave.dpkg-tmp");
                checked_mv("$altdir/$slave.dpkg-tmp", "$altdir/$slave");
            } else {
-               &amp;pr("Removing $slave ($slavelinks[$slnum]), not appropriate with $versions[$preferred].")
+               &&pr("Removing $slave ($slavelinks[$slnum]), not appropriate with $versions[$preferred].")
                    if $verbosemode &gt; 0;
-               unlink("$altdir/$slave") || $! == &amp;ENOENT ||
-                   &amp;quit("unable to remove $altdir/$slave: $!");
+               unlink("$altdir/$slave") || $! == &ENOENT ||
+                   &quit("unable to remove $altdir/$slave: $!");
            }
        }
 
@@ -548,12 +548,12 @@ sub rename_mv {
 sub checked_symlink {
     my ($filename, $linkname) = @_;
     symlink($filename, $linkname) ||
-       &amp;quit("unable to make $linkname a symlink to $filename: $!");
+       &quit("unable to make $linkname a symlink to $filename: $!");
 }
 sub checked_mv {
     my ($source, $dest) = @_;
     rename_mv($source, $dest) ||
-       &amp;quit("unable to install $source as $dest: $!");
+       &quit("unable to install $source as $dest: $!");
 }
 
 exit(0);