Import Debian changes 1.13-1.1 debian/1.13-1.1
authorAndreas Barth <aba@not.so.argh.org>
Sun, 21 Sep 2008 09:08:06 +0000 (09:08 +0000)
committerThadeu Lima de Souza Cascardo <cascardo@cascardo.eti.br>
Fri, 11 Aug 2017 22:35:27 +0000 (19:35 -0300)
sendxmpp (1.13-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Fix !$port to $port. Closes #496823

debian/changelog
sendxmpp

index e720257..847c7d6 100644 (file)
@@ -1,3 +1,10 @@
+sendxmpp (1.13-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix !$port to $port. Closes #496823
+
+ -- Andreas Barth <aba@not.so.argh.org>  Sun, 21 Sep 2008 09:08:06 +0000
+
 sendxmpp (1.13-1) unstable; urgency=low
 
   * New upstream release.
index 3959ffb..fc9d65b 100755 (executable)
--- a/sendxmpp
+++ b/sendxmpp
@@ -281,7 +281,7 @@ sub xmpp_login ($$$$$$$$) {
                connectiontype  => 'tcpip',
                componentname   => $comp
        };
-       $arghash->{port} = $port if (!$port);
+       $arghash->{port} = $port if ($port);
        if (!$port) {
                @res = $cnx->Connect(%$arghash);
                error_exit ("Could not connect to server '$host': $@") unless @res;