Description: TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . netpipes (4.2-6) unstable; urgency=low . * Rename `timelimit`, favouring an external package. + debian/patches/32-newline_timelimit.diff: New file. + debian/patches/33-rename_timelimit.diff: New file. + debian/NEWS: Mention this change. * debian/control: Fields for binary package. + Recommends `timelimit`. + Suggests `psmisc`. + Remove an outdated Conflicts field. * Progress to Standards 3.9.1. Author: Mats Erik Andersson --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- netpipes-4.2.orig/hose.c +++ netpipes-4.2/hose.c @@ -180,14 +180,14 @@ int reuseaddr; } } - length = (inet_addr.ss_family == AF_INET6) - ? sizeof(struct sockaddr_in6) : sizeof(struct sockaddr_in); #ifdef DOUNIX cstat=connect(sock, (doflags&DOUNIX) ? ((struct sockaddr*)&unix_addr) : ((struct sockaddr*)&inet_addr), length); #else cstat=connect(sock, ((struct sockaddr*)&inet_addr), length); + length = (inet_addr.ss_family == AF_INET6) + ? sizeof(struct sockaddr_in6) : sizeof(struct sockaddr_in); #endif if (cstat==0) break; /* success */