7d95763414
Split up the ubuntu patch OBS-URL: https://build.opensuse.org/request/show/197181 OBS-URL: https://build.opensuse.org/package/show/network:utilities/netcat-openbsd?expand=0&rev=12
15 lines
445 B
Diff
15 lines
445 B
Diff
Index: netcat-1.84/netcat.c
|
|
===================================================================
|
|
--- netcat-1.84.orig/netcat.c 2008-01-15 10:10:22.373351813 +0100
|
|
+++ netcat-1.84/netcat.c 2008-01-15 10:10:24.840730278 +0100
|
|
@@ -799,6 +799,9 @@
|
|
hi = lo;
|
|
lo = cp;
|
|
}
|
|
+ else if (pfd[0].revents & POLLERR)
|
|
+ if (write(nfd, "", 1) == -1)
|
|
+ warn("Write error");
|
|
|
|
/* Load ports sequentially. */
|
|
for (cp = lo; cp <= hi; cp++) {
|