pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/bounce



Module Name:    pkgsrc
Committed By:   nia
Date:           Fri Mar 20 09:58:53 UTC 2026

Modified Files:
        pkgsrc/net/bounce: distinfo
        pkgsrc/net/bounce/patches: patch-aa

Log Message:
bounce: Need to always include <string.h>


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/net/bounce/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/bounce/patches/patch-aa

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/bounce/distinfo
diff -u pkgsrc/net/bounce/distinfo:1.9 pkgsrc/net/bounce/distinfo:1.10
--- pkgsrc/net/bounce/distinfo:1.9      Tue Oct 26 11:05:25 2021
+++ pkgsrc/net/bounce/distinfo  Fri Mar 20 09:58:53 2026
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.9 2021/10/26 11:05:25 nia Exp $
+$NetBSD: distinfo,v 1.10 2026/03/20 09:58:53 nia Exp $
 
 BLAKE2s (bounce-0.0.tar.gz) = f99867cdfb49767d2fc6772e9433a02f0f8174181c10fbb44b2a52b11deebee8
 SHA512 (bounce-0.0.tar.gz) = 9898612f3dc8028d035f58944140ed4a83d04c321562a69859740969bce2d8eb65b28d6ecc7c9e21514742672be86f6cb79dabcae0c2ce5fa1ceed0003281fad
 Size (bounce-0.0.tar.gz) = 3439 bytes
-SHA1 (patch-aa) = 89469c2b8608796006a817dcbb5e5b3bf21007ef
+SHA1 (patch-aa) = 3c364a59c8918493a186a2d94535c628e9483573
 SHA1 (patch-ab) = 199f3c84c5389a97b4e18f81d1c771717a0ffdd2

Index: pkgsrc/net/bounce/patches/patch-aa
diff -u pkgsrc/net/bounce/patches/patch-aa:1.2 pkgsrc/net/bounce/patches/patch-aa:1.3
--- pkgsrc/net/bounce/patches/patch-aa:1.2      Sun Dec 18 21:45:29 2005
+++ pkgsrc/net/bounce/patches/patch-aa  Fri Mar 20 09:58:53 2026
@@ -1,18 +1,17 @@
-$NetBSD: patch-aa,v 1.2 2005/12/18 21:45:29 joerg Exp $
+$NetBSD: patch-aa,v 1.3 2026/03/20 09:58:53 nia Exp $
 
 --- bounce.c.orig      2000-02-18 21:58:52.000000000 +0000
 +++ bounce.c
-@@ -11,6 +11,9 @@
- #ifdef _AIX
+@@ -12,6 +12,8 @@
  #include <sys/select.h>
  #endif
-+#ifdef __NetBSD__
-+#include <string.h> /* memset() for FD_*() macros */
-+#endif
  
++#include <string.h>
++
  #include <fcntl.h>
  #include <errno.h>
-@@ -27,7 +30,6 @@
+ #include <netinet/in.h>
+@@ -27,7 +29,6 @@
  #define    DEFAULT_PORT   1523
  
  char sbuf[16384], cbuf[16384];
@@ -20,7 +19,7 @@ $NetBSD: patch-aa,v 1.2 2005/12/18 21:45
  /* extern char *sys_errlist[]; */
  
  void sigchld() {
-@@ -39,7 +41,6 @@ void communicate(int sfd, int cfd) {
+@@ -39,7 +40,6 @@ void communicate(int sfd, int cfd) {
      char *chead, *ctail, *shead, *stail;
      int num, nfd, spos, cpos;
  



Home | Main Index | Thread Index | Old Index