diff options
author | bad <bad@pkgsrc.org> | 1999-05-18 14:55:48 +0000 |
---|---|---|
committer | bad <bad@pkgsrc.org> | 1999-05-18 14:55:48 +0000 |
commit | fbe2ebe8e6c186e2a0d3e44e560dc7f091bcf969 (patch) | |
tree | 465f778e3b5b47452b2f0271533253bbba5da842 /devel/mit-pthreads | |
parent | 147ae6dd80e19bbb1c246ab801b385d560877754 (diff) | |
download | pkgsrc-fbe2ebe8e6c186e2a0d3e44e560dc7f091bcf969.tar.gz |
Fix obvious typo in getprotoent.c
From gson@araneus.fi (Andreas Gustafsson).
Diffstat (limited to 'devel/mit-pthreads')
-rw-r--r-- | devel/mit-pthreads/patches/patch-bk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/mit-pthreads/patches/patch-bk b/devel/mit-pthreads/patches/patch-bk new file mode 100644 index 00000000000..be900ce7561 --- /dev/null +++ b/devel/mit-pthreads/patches/patch-bk @@ -0,0 +1,15 @@ +$NetBSD: patch-bk,v 1.1 1999/05/18 14:55:48 bad Exp $ + +--- net/getprotoent.c.orig Fri Feb 9 06:39:41 1996 ++++ net/getprotoent.c Tue May 18 16:45:09 1999 +@@ -128,8 +128,8 @@ + if (p != NULL) + *p++ = '\0'; + } +- if (p && *p); +- break; ++ if (p && *p) ++ break; + } + *alias = NULL; + pthread_mutex_unlock(&proto_file_lock); |