Package: apq Severity: normal Patch included
-- System Information: Debian Release: 6.0 APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.36.1daniel.1 (SMP w/8 CPU cores) Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
Author: Daniel Norte de Moraes <danielchea...@gmail.com> Description: corrected a bug that mangling Ip_Port e Unix_port in set_host_name() and set_host_address(). Description: this bug caused trouble when connecting to a remote servers . --- apq.orig/src/apq.adb 2009-08-28 02:46:46.000000000 -0300 +++ apq/src/apq.adb 2011-03-30 09:44:59.626683335 -0300 @@ -210,6 +210,7 @@ begin Replace_String(C.Host_Address,""); Replace_String(C.Host_Name,Set_Host_Name.Host_Name); + c.Port_Format := UNIX_Port; end Set_Host_Name; @@ -225,6 +226,7 @@ begin Replace_String(C.Host_Name,""); Replace_String(C.Host_Address, Set_Host_Address.Host_Address); + c.Port_Format := IP_Port; end Set_Host_Address;