summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg>2014-03-06 15:44:21 +0000
committerjoerg <joerg>2014-03-06 15:44:21 +0000
commitddaee8d9c5fe85c13e7197fea251c62b2da2d1bd (patch)
tree0860bd43e482e33f2e550c67857d832bc985b12d /net
parent186efbab1cccdd0cc1e7625a3e99054eba82627b (diff)
downloadpkgsrc-ddaee8d9c5fe85c13e7197fea251c62b2da2d1bd.tar.gz
Drop pointless pointer compare.
Diffstat (limited to 'net')
-rw-r--r--net/bsddip/distinfo4
-rw-r--r--net/bsddip/patches/patch-ab14
2 files changed, 14 insertions, 4 deletions
diff --git a/net/bsddip/distinfo b/net/bsddip/distinfo
index fccb6591099..39fde25f55e 100644
--- a/net/bsddip/distinfo
+++ b/net/bsddip/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.2 2013/09/10 14:26:49 joerg Exp $
+$NetBSD: distinfo,v 1.3 2014/03/06 15:44:21 joerg Exp $
SHA1 (bsddip-1.02.tar.Z) = f938ba32fcbb958c6a9632502d6728cb0a8bac4c
RMD160 (bsddip-1.02.tar.Z) = 799b899cee5ef1b8a49c8a0929a2c4f0d17bcbab
Size (bsddip-1.02.tar.Z) = 78191 bytes
-SHA1 (patch-ab) = 63e5634844aba32e0f1467783743d1d6b97bf74a
+SHA1 (patch-ab) = 64ac16f5582e53085b211d819af7530639c1a803
SHA1 (patch-ac) = 0bf7e78142ef21167475fd9af4071494054016e9
SHA1 (patch-daemon.c) = f70a5313c4926f7bed62aebc15b43251c0bb2bff
diff --git a/net/bsddip/patches/patch-ab b/net/bsddip/patches/patch-ab
index eae0956af06..6483cef681a 100644
--- a/net/bsddip/patches/patch-ab
+++ b/net/bsddip/patches/patch-ab
@@ -1,4 +1,4 @@
-$NetBSD: patch-ab,v 1.2 2013/09/10 14:26:49 joerg Exp $
+$NetBSD: patch-ab,v 1.3 2014/03/06 15:44:21 joerg Exp $
--- tty.c.orig 1995-06-30 23:41:05.000000000 +0000
+++ tty.c
@@ -160,7 +160,17 @@ $NetBSD: patch-ab,v 1.2 2013/09/10 14:26:49 joerg Exp $
{
(void) fprintf ( stderr, "DIP: tty: open(%s, RW): %s\n",
path, strerror ( errno ) );
-@@ -1118,10 +1178,5 @@ int tty_open ( char *name )
+@@ -1080,8 +1140,7 @@ int tty_open ( char *name )
+ /*
+ * If we are running in MASTER mode, set the default speed.
+ */
+- if ( ( path != NULL )
+- && ( tty_set_speed ( &tty_current, "9600" ) != 0 ) )
++ if ( ( tty_set_speed ( &tty_current, "9600" ) != 0 ) )
+ {
+ (void) fprintf ( stderr, "DIP: tty: open: cannot set 9600 bps!\n" );
+
+@@ -1118,10 +1177,5 @@ int tty_open ( char *name )
{
return 0 ;
}