From f56c333ccf92a91e6ce096978b6e4c41a7807cf9 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: May 29 2009 12:50:00 +0000 Subject: Updated to latest upstream version: 0.2.0 --- diff --git a/.cvsignore b/.cvsignore index 57feedc..18873c3 100644 --- a/.cvsignore +++ b/.cvsignore @@ -3,3 +3,4 @@ libtirpc-0.1.8.tar.bz2 libtirpc-0.1.9.tar.bz2 libtirpc-0.1.10.tar.bz2 libtirpc-0.1.11.tar.bz2 +libtirpc-0.2.0.tar.bz2 diff --git a/libtirpc-0.1.12-rc1.patch b/libtirpc-0.1.12-rc1.patch deleted file mode 100644 index e2a9087..0000000 --- a/libtirpc-0.1.12-rc1.patch +++ /dev/null @@ -1,65 +0,0 @@ -diff --git a/src/svc.c b/src/svc.c -commit 8f840586d9ceba6d682ab424ae48a0cf08f7ea41 -Author: Jeff Layton -Date: Mon Apr 20 12:23:25 2009 -0400 - - http://web.mit.edu/kerberos/advisories/MITKRB5-SA-2006-002-rpc.txt - - Signed-off-by: Jeff Layton - Signed-off-by: Steve Dickson - -commit 54ad86c29bcd40dbb6b9f1f9e611778add4227ea -Author: Jeff Layton -Date: Mon Apr 20 12:22:22 2009 -0400 - - [PATCH] port fix for CVE-2008-0947 - - Adds bounds checking of fd passed into makefd_xprt against FD_SETSIZE. - - http://web.mit.edu/kerberos/advisories/MITKRB5-SA-2008-002.txt - - This was reported against MIT krb5 code, but it looks like libtirpc - has a similar problem. - - Signed-off-by: Jeff Layton - Signed-off-by: Steve Dickson ------------------------------------------------------ ---- a/src/svc.c -+++ b/src/svc.c -@@ -78,6 +78,7 @@ static struct svc_callout - - extern rwlock_t svc_lock; - extern rwlock_t svc_fd_lock; -+extern struct svc_auth_ops svc_auth_gss_ops; - - static struct svc_callout *svc_find (rpcprog_t, rpcvers_t, - struct svc_callout **, char *); -@@ -715,6 +716,11 @@ svc_getreq_common (fd) - SVC_DESTROY (xprt); - break; - } -+ else if ((xprt->xp_auth != NULL) && -+ (xprt->xp_auth->svc_ah_ops != &svc_auth_gss_ops)) -+ { -+ xprt->xp_auth = NULL; -+ } - } - while (stat == XPRT_MOREREQS); - } -diff --git a/src/svc_vc.c b/src/svc_vc.c -index 44d3497..7a1f5c3 100644 ---- a/src/svc_vc.c -+++ b/src/svc_vc.c -@@ -261,6 +261,12 @@ makefd_xprt(fd, sendsize, recvsize) - - assert(fd != -1); - -+ if (fd >= FD_SETSIZE) { -+ warnx("svc_vc: makefd_xprt: fd too high\n"); -+ xprt = NULL; -+ goto done; -+ } -+ - xprt = mem_alloc(sizeof(SVCXPRT)); - if (xprt == NULL) { - warnx("svc_vc: makefd_xprt: out of memory"); diff --git a/libtirpc-0.1.7-compile.patch b/libtirpc-0.1.7-compile.patch deleted file mode 100644 index 29dcb35..0000000 --- a/libtirpc-0.1.7-compile.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- libtirpc-0.1.7/src/Makefile.am.orig 2005-05-18 01:10:50.000000000 -0400 -+++ libtirpc-0.1.7/src/Makefile.am 2006-08-09 15:15:31.000000000 -0400 -@@ -11,7 +11,7 @@ INCLUDES = -I../tirpc -DPORTMAP -DINET6 - - lib_LTLIBRARIES = libtirpc.la - --libtirpc_la_LDFLAGS = -lnsl -lpthread -version-info 1:9:0 -+libtirpc_la_LDFLAGS = -lnsl -lpthread -version-info 1:11:0 - - libtirpc_la_SOURCES = auth_none.c auth_unix.c authunix_prot.c bindresvport.c clnt_bcast.c \ - clnt_dg.c clnt_generic.c clnt_perror.c clnt_raw.c clnt_simple.c \ diff --git a/libtirpc-0.2.0-rc1.patch b/libtirpc-0.2.0-rc1.patch new file mode 100644 index 0000000..b7a8f7a --- /dev/null +++ b/libtirpc-0.2.0-rc1.patch @@ -0,0 +1,10 @@ +diff --git a/Makefile.am b/Makefile.am +index 3e50d3c..7f5f37b 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,4 +1,4 @@ +-SUBDIRS = src man ++SUBDIRS = src man doc + + nobase_include_HEADERS = tirpc/netconfig.h \ + tirpc/rpcsvc/crypt.x \ diff --git a/libtirpc-changetoBSDlicense.patch b/libtirpc-changetoBSDlicense.patch deleted file mode 100644 index f1b2b02..0000000 --- a/libtirpc-changetoBSDlicense.patch +++ /dev/null @@ -1,5209 +0,0 @@ -diff -up libtirpc-0.1.11/src/auth_des.c.BAD libtirpc-0.1.11/src/auth_des.c ---- libtirpc-0.1.11/src/auth_des.c.BAD 2009-05-19 16:24:39.881074616 -0400 -+++ libtirpc-0.1.11/src/auth_des.c 2009-05-19 16:05:13.673808748 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1988 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/src/authdes_prot.c.BAD libtirpc-0.1.11/src/authdes_prot.c ---- libtirpc-0.1.11/src/authdes_prot.c.BAD 2009-05-19 16:24:39.883058109 -0400 -+++ libtirpc-0.1.11/src/authdes_prot.c 2009-05-19 16:22:06.049829173 -0400 -@@ -1,31 +1,30 @@ - #include - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/auth_none.c.BAD libtirpc-0.1.11/src/auth_none.c ---- libtirpc-0.1.11/src/auth_none.c.BAD 2009-05-19 16:24:39.884074160 -0400 -+++ libtirpc-0.1.11/src/auth_none.c 2009-05-19 16:25:35.209829067 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/auth_unix.c.BAD libtirpc-0.1.11/src/auth_unix.c ---- libtirpc-0.1.11/src/auth_unix.c.BAD 2009-05-19 16:24:39.886057513 -0400 -+++ libtirpc-0.1.11/src/auth_unix.c 2009-05-19 16:26:18.506809461 -0400 -@@ -1,31 +1,30 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 --*/ -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. -+ */ - - #include - -diff -up libtirpc-0.1.11/src/authunix_prot.c.BAD libtirpc-0.1.11/src/authunix_prot.c ---- libtirpc-0.1.11/src/authunix_prot.c.BAD 2009-05-19 16:24:39.887075520 -0400 -+++ libtirpc-0.1.11/src/authunix_prot.c 2009-05-19 16:26:31.833808323 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/bindresvport.c.BAD libtirpc-0.1.11/src/bindresvport.c ---- libtirpc-0.1.11/src/bindresvport.c.BAD 2009-05-19 16:24:39.888067266 -0400 -+++ libtirpc-0.1.11/src/bindresvport.c 2009-05-19 16:26:44.786059000 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/clnt_bcast.c.BAD libtirpc-0.1.11/src/clnt_bcast.c ---- libtirpc-0.1.11/src/clnt_bcast.c.BAD 2009-05-19 16:24:39.890057953 -0400 -+++ libtirpc-0.1.11/src/clnt_bcast.c 2009-05-19 16:27:06.475058901 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/#clnt_dg.c#.BAD libtirpc-0.1.11/src/#clnt_dg.c# -diff -up libtirpc-0.1.11/src/clnt_dg.c~.BAD libtirpc-0.1.11/src/clnt_dg.c~ -diff -up libtirpc-0.1.11/src/clnt_dg.c.BAD libtirpc-0.1.11/src/clnt_dg.c ---- libtirpc-0.1.11/src/clnt_dg.c.BAD 2009-05-19 16:24:39.892057579 -0400 -+++ libtirpc-0.1.11/src/clnt_dg.c 2009-05-19 16:27:24.522809450 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/clnt_generic.c.BAD libtirpc-0.1.11/src/clnt_generic.c ---- libtirpc-0.1.11/src/clnt_generic.c.BAD 2009-05-19 16:24:39.898058763 -0400 -+++ libtirpc-0.1.11/src/clnt_generic.c 2009-05-19 16:27:53.146809382 -0400 -@@ -1,47 +1,29 @@ - /* -- * The contents of this file are subject to the Sun Standards -- * License Version 1.0 the (the "License";) You may not use -- * this file except in compliance with the License. You may -- * obtain a copy of the License at lib/libc/rpc/LICENSE -- * -- * Software distributed under the License is distributed on -- * an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either -- * express or implied. See the License for the specific -- * language governing rights and limitations under the License. -- * -- * The Original Code is Copyright 1998 by Sun Microsystems, Inc -- * -- * The Initial Developer of the Original Code is: Sun -- * Microsystems, Inc. -- * -- * All Rights Reserved. -- * -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/clnt_perror.c.BAD libtirpc-0.1.11/src/clnt_perror.c ---- libtirpc-0.1.11/src/clnt_perror.c.BAD 2009-05-19 16:24:39.901080936 -0400 -+++ libtirpc-0.1.11/src/clnt_perror.c 2009-05-19 16:28:16.370058939 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/clnt_raw.c.BAD libtirpc-0.1.11/src/clnt_raw.c ---- libtirpc-0.1.11/src/clnt_raw.c.BAD 2009-05-19 16:24:39.903080422 -0400 -+++ libtirpc-0.1.11/src/clnt_raw.c 2009-05-19 16:28:32.218020224 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/clnt_simple.c.BAD libtirpc-0.1.11/src/clnt_simple.c ---- libtirpc-0.1.11/src/clnt_simple.c.BAD 2009-05-19 16:24:39.906058874 -0400 -+++ libtirpc-0.1.11/src/clnt_simple.c 2009-05-19 16:28:45.570809334 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/clnt_vc.c.BAD libtirpc-0.1.11/src/clnt_vc.c ---- libtirpc-0.1.11/src/clnt_vc.c.BAD 2009-05-19 16:24:39.909080418 -0400 -+++ libtirpc-0.1.11/src/clnt_vc.c 2009-05-19 16:29:01.922809242 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/des_crypt.c.BAD libtirpc-0.1.11/src/des_crypt.c ---- libtirpc-0.1.11/src/des_crypt.c.BAD 2009-05-19 16:24:39.911058883 -0400 -+++ libtirpc-0.1.11/src/des_crypt.c 2009-05-19 16:29:15.561808504 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * des_crypt.c, DES encryption library routines -diff -up libtirpc-0.1.11/src/des_soft.c.BAD libtirpc-0.1.11/src/des_soft.c ---- libtirpc-0.1.11/src/des_soft.c.BAD 2009-05-19 16:24:39.914079798 -0400 -+++ libtirpc-0.1.11/src/des_soft.c 2009-05-19 16:29:28.642059032 -0400 -@@ -1,32 +1,31 @@ - //#include - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Table giving odd parity in the low bit for ASCII characters -diff -up libtirpc-0.1.11/src/getnetconfig.c.BAD libtirpc-0.1.11/src/getnetconfig.c ---- libtirpc-0.1.11/src/getnetconfig.c.BAD 2009-05-19 16:24:39.917058809 -0400 -+++ libtirpc-0.1.11/src/getnetconfig.c 2009-05-19 16:29:45.002809979 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user or with the express written consent of -- * Sun Microsystems, Inc. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/getnetpath.c.BAD libtirpc-0.1.11/src/getnetpath.c ---- libtirpc-0.1.11/src/getnetpath.c.BAD 2009-05-19 16:24:39.919059064 -0400 -+++ libtirpc-0.1.11/src/getnetpath.c 2009-05-19 16:29:58.593808629 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user or with the express written consent of -- * Sun Microsystems, Inc. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - #include - -diff -up libtirpc-0.1.11/src/getpublickey.c.BAD libtirpc-0.1.11/src/getpublickey.c ---- libtirpc-0.1.11/src/getpublickey.c.BAD 2009-05-19 16:24:39.922081027 -0400 -+++ libtirpc-0.1.11/src/getpublickey.c 2009-05-19 16:30:21.978058436 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user or with the express written consent of -- * Sun Microsystems, Inc. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - #include -diff -up libtirpc-0.1.11/src/getrpcent.c.BAD libtirpc-0.1.11/src/getrpcent.c ---- libtirpc-0.1.11/src/getrpcent.c.BAD 2009-05-19 16:24:39.925058920 -0400 -+++ libtirpc-0.1.11/src/getrpcent.c 2009-05-19 16:30:39.762058546 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user or with the express written consent of -- * Sun Microsystems, Inc. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/getrpcport.c.BAD libtirpc-0.1.11/src/getrpcport.c ---- libtirpc-0.1.11/src/getrpcport.c.BAD 2009-05-19 16:24:39.927080686 -0400 -+++ libtirpc-0.1.11/src/getrpcport.c 2009-05-19 16:30:58.753808360 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - -diff -up libtirpc-0.1.11/src/key_call.c.BAD libtirpc-0.1.11/src/key_call.c ---- libtirpc-0.1.11/src/key_call.c.BAD 2009-05-19 16:24:39.930058929 -0400 -+++ libtirpc-0.1.11/src/key_call.c 2009-05-19 16:31:14.131809503 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/key_prot_xdr.c.BAD libtirpc-0.1.11/src/key_prot_xdr.c ---- libtirpc-0.1.11/src/key_prot_xdr.c.BAD 2009-05-19 16:24:39.933082219 -0400 -+++ libtirpc-0.1.11/src/key_prot_xdr.c 2009-05-19 16:31:37.691059167 -0400 -@@ -5,32 +5,31 @@ - - #include - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* Copyright (c) 1990, 1991 Sun Microsystems, Inc. */ - -diff -up libtirpc-0.1.11/src/netname.c.BAD libtirpc-0.1.11/src/netname.c ---- libtirpc-0.1.11/src/netname.c.BAD 2009-05-19 16:24:39.935058658 -0400 -+++ libtirpc-0.1.11/src/netname.c 2009-05-19 16:31:53.833808537 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user or with the express written consent of -- * Sun Microsystems, Inc. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/netnamer.c.BAD libtirpc-0.1.11/src/netnamer.c ---- libtirpc-0.1.11/src/netnamer.c.BAD 2009-05-19 16:24:39.938059040 -0400 -+++ libtirpc-0.1.11/src/netnamer.c 2009-05-19 16:32:05.689808260 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user or with the express written consent of -- * Sun Microsystems, Inc. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/pmap_clnt.c.BAD libtirpc-0.1.11/src/pmap_clnt.c ---- libtirpc-0.1.11/src/pmap_clnt.c.BAD 2009-05-19 16:24:39.941080445 -0400 -+++ libtirpc-0.1.11/src/pmap_clnt.c 2009-05-19 16:32:19.866058794 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/pmap_getmaps.c.BAD libtirpc-0.1.11/src/pmap_getmaps.c ---- libtirpc-0.1.11/src/pmap_getmaps.c.BAD 2009-05-19 16:24:39.944079849 -0400 -+++ libtirpc-0.1.11/src/pmap_getmaps.c 2009-05-19 16:32:31.611059069 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/pmap_getport.c.BAD libtirpc-0.1.11/src/pmap_getport.c ---- libtirpc-0.1.11/src/pmap_getport.c.BAD 2009-05-19 16:24:39.946079685 -0400 -+++ libtirpc-0.1.11/src/pmap_getport.c 2009-05-19 16:32:44.282808891 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * pmap_getport.c -diff -up libtirpc-0.1.11/src/pmap_prot2.c.BAD libtirpc-0.1.11/src/pmap_prot2.c ---- libtirpc-0.1.11/src/pmap_prot2.c.BAD 2009-05-19 16:24:39.949058766 -0400 -+++ libtirpc-0.1.11/src/pmap_prot2.c 2009-05-19 16:32:59.826808839 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/pmap_prot.c.BAD libtirpc-0.1.11/src/pmap_prot.c ---- libtirpc-0.1.11/src/pmap_prot.c.BAD 2009-05-19 16:24:39.951080811 -0400 -+++ libtirpc-0.1.11/src/pmap_prot.c 2009-05-19 16:33:13.753808574 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/pmap_rmt.c.BAD libtirpc-0.1.11/src/pmap_rmt.c ---- libtirpc-0.1.11/src/pmap_rmt.c.BAD 2009-05-19 16:24:39.954058704 -0400 -+++ libtirpc-0.1.11/src/pmap_rmt.c 2009-05-19 16:33:30.194809011 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/rpbc_clnt.c.BAD libtirpc-0.1.11/src/rpbc_clnt.c ---- libtirpc-0.1.11/src/rpbc_clnt.c.BAD 2009-05-19 16:24:39.957079899 -0400 -+++ libtirpc-0.1.11/src/rpbc_clnt.c 2009-05-19 16:33:49.443059127 -0400 -@@ -1,47 +1,29 @@ - /* -- * The contents of this file are subject to the Sun Standards -- * License Version 1.0 the (the "License";) You may not use -- * this file except in compliance with the License. You may -- * obtain a copy of the License at lib/libc/rpc/LICENSE -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * Software distributed under the License is distributed on -- * an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either -- * express or implied. See the License for the specific -- * language governing rights and limitations under the License. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * The Original Code is Copyright 1998 by Sun Microsystems, Inc -- * -- * The Initial Developer of the Original Code is: Sun -- * Microsystems, Inc. -- * -- * All Rights Reserved. -- * -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/rpcb_clnt.c~.BAD libtirpc-0.1.11/src/rpcb_clnt.c~ -diff -up libtirpc-0.1.11/src/rpcb_clnt.c.BAD libtirpc-0.1.11/src/rpcb_clnt.c ---- libtirpc-0.1.11/src/rpcb_clnt.c.BAD 2009-05-19 16:24:39.960058980 -0400 -+++ libtirpc-0.1.11/src/rpcb_clnt.c 2009-05-19 16:34:09.923808792 -0400 -@@ -1,47 +1,29 @@ - /* -- * The contents of this file are subject to the Sun Standards -- * License Version 1.0 the (the "License";) You may not use -- * this file except in compliance with the License. You may -- * obtain a copy of the License at lib/libc/rpc/LICENSE -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * Software distributed under the License is distributed on -- * an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either -- * express or implied. See the License for the specific -- * language governing rights and limitations under the License. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * The Original Code is Copyright 1998 by Sun Microsystems, Inc -- * -- * The Initial Developer of the Original Code is: Sun -- * Microsystems, Inc. -- * -- * All Rights Reserved. -- * -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/rpcb_clnt.c.ref.BAD libtirpc-0.1.11/src/rpcb_clnt.c.ref -diff -up libtirpc-0.1.11/src/rpcb_prot.c.BAD libtirpc-0.1.11/src/rpcb_prot.c ---- libtirpc-0.1.11/src/rpcb_prot.c.BAD 2009-05-19 16:24:39.968059021 -0400 -+++ libtirpc-0.1.11/src/rpcb_prot.c 2009-05-19 16:34:30.474810772 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/rpcb_st_xdr.c.BAD libtirpc-0.1.11/src/rpcb_st_xdr.c ---- libtirpc-0.1.11/src/rpcb_st_xdr.c.BAD 2009-05-19 16:24:39.971081124 -0400 -+++ libtirpc-0.1.11/src/rpcb_st_xdr.c 2009-05-19 16:34:44.498058411 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright 1991 Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/src/rpc_callmsg.c.BAD libtirpc-0.1.11/src/rpc_callmsg.c ---- libtirpc-0.1.11/src/rpc_callmsg.c.BAD 2009-05-19 16:24:39.974058668 -0400 -+++ libtirpc-0.1.11/src/rpc_callmsg.c 2009-05-19 16:35:02.185808098 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/rpc_com.h.BAD libtirpc-0.1.11/src/rpc_com.h ---- libtirpc-0.1.11/src/rpc_com.h.BAD 2009-05-19 16:24:39.976059342 -0400 -+++ libtirpc-0.1.11/src/rpc_com.h 2009-05-19 16:35:25.266018596 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/src/rpc_commondata.c.BAD libtirpc-0.1.11/src/rpc_commondata.c ---- libtirpc-0.1.11/src/rpc_commondata.c.BAD 2009-05-19 16:24:39.979079769 -0400 -+++ libtirpc-0.1.11/src/rpc_commondata.c 2009-05-19 16:35:43.834809273 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/rpcdname.c.BAD libtirpc-0.1.11/src/rpcdname.c ---- libtirpc-0.1.11/src/rpcdname.c.BAD 2009-05-19 16:24:39.982059059 -0400 -+++ libtirpc-0.1.11/src/rpcdname.c 2009-05-19 16:35:56.593808800 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user or with the express written consent of -- * Sun Microsystems, Inc. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - #include - -diff -up libtirpc-0.1.11/src/rpc_dtablesize.c.BAD libtirpc-0.1.11/src/rpc_dtablesize.c ---- libtirpc-0.1.11/src/rpc_dtablesize.c.BAD 2009-05-19 16:24:39.984058895 -0400 -+++ libtirpc-0.1.11/src/rpc_dtablesize.c 2009-05-19 16:36:10.319808371 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/rpc_generic.c.BAD libtirpc-0.1.11/src/rpc_generic.c ---- libtirpc-0.1.11/src/rpc_generic.c.BAD 2009-05-19 16:24:39.987080439 -0400 -+++ libtirpc-0.1.11/src/rpc_generic.c 2009-05-19 16:36:21.723059022 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/rpc_prot.c.BAD libtirpc-0.1.11/src/rpc_prot.c ---- libtirpc-0.1.11/src/rpc_prot.c.BAD 2009-05-19 16:24:39.990059729 -0400 -+++ libtirpc-0.1.11/src/rpc_prot.c 2009-05-19 16:36:34.082808991 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/rpc_soc.c.BAD libtirpc-0.1.11/src/rpc_soc.c ---- libtirpc-0.1.11/src/rpc_soc.c.BAD 2009-05-19 16:24:39.992059705 -0400 -+++ libtirpc-0.1.11/src/rpc_soc.c 2009-05-19 16:36:47.459058823 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/rtime.c.BAD libtirpc-0.1.11/src/rtime.c ---- libtirpc-0.1.11/src/rtime.c.BAD 2009-05-19 16:24:39.995080830 -0400 -+++ libtirpc-0.1.11/src/rtime.c 2009-05-19 16:36:59.881807863 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/svc_auth.c.BAD libtirpc-0.1.11/src/svc_auth.c ---- libtirpc-0.1.11/src/svc_auth.c.BAD 2009-05-19 16:24:39.997058665 -0400 -+++ libtirpc-0.1.11/src/svc_auth.c 2009-05-19 16:37:19.195059616 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/svc_auth_des.c.BAD libtirpc-0.1.11/src/svc_auth_des.c ---- libtirpc-0.1.11/src/svc_auth_des.c.BAD 2009-05-19 16:24:40.000080908 -0400 -+++ libtirpc-0.1.11/src/svc_auth_des.c 2009-05-19 16:37:42.363059106 -0400 -@@ -4,32 +4,31 @@ - */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/svc_auth_unix.c.BAD libtirpc-0.1.11/src/svc_auth_unix.c ---- libtirpc-0.1.11/src/svc_auth_unix.c.BAD 2009-05-19 16:24:40.003059499 -0400 -+++ libtirpc-0.1.11/src/svc_auth_unix.c 2009-05-19 16:37:59.545807870 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/svc.c.BAD libtirpc-0.1.11/src/svc.c ---- libtirpc-0.1.11/src/svc.c.BAD 2009-05-19 16:24:40.006059044 -0400 -+++ libtirpc-0.1.11/src/svc.c 2009-05-19 16:38:11.531058992 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/svc_dg.c.BAD libtirpc-0.1.11/src/svc_dg.c ---- libtirpc-0.1.11/src/svc_dg.c.BAD 2009-05-19 16:24:40.009079889 -0400 -+++ libtirpc-0.1.11/src/svc_dg.c 2009-05-19 16:38:25.106809802 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/svc_generic.c.BAD libtirpc-0.1.11/src/svc_generic.c ---- libtirpc-0.1.11/src/svc_generic.c.BAD 2009-05-19 16:24:40.012079922 -0400 -+++ libtirpc-0.1.11/src/svc_generic.c 2009-05-19 16:38:36.217809375 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/svc_raw.c.BAD libtirpc-0.1.11/src/svc_raw.c ---- libtirpc-0.1.11/src/svc_raw.c.BAD 2009-05-19 16:24:40.014059085 -0400 -+++ libtirpc-0.1.11/src/svc_raw.c 2009-05-19 16:38:48.763058908 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/svc_run.c.BAD libtirpc-0.1.11/src/svc_run.c ---- libtirpc-0.1.11/src/svc_run.c.BAD 2009-05-19 16:24:40.017080419 -0400 -+++ libtirpc-0.1.11/src/svc_run.c 2009-05-19 16:39:02.034808681 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/src/svc_simple.c.BAD libtirpc-0.1.11/src/svc_simple.c ---- libtirpc-0.1.11/src/svc_simple.c.BAD 2009-05-19 16:24:40.020059221 -0400 -+++ libtirpc-0.1.11/src/svc_simple.c 2009-05-19 16:39:16.849808377 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986-1991 by Sun Microsystems Inc. -diff -up libtirpc-0.1.11/src/svc_vc.c.BAD libtirpc-0.1.11/src/svc_vc.c ---- libtirpc-0.1.11/src/svc_vc.c.BAD 2009-05-19 16:24:40.023059882 -0400 -+++ libtirpc-0.1.11/src/svc_vc.c 2009-05-19 16:39:29.227081907 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/xdr_array.c.BAD libtirpc-0.1.11/src/xdr_array.c ---- libtirpc-0.1.11/src/xdr_array.c.BAD 2009-05-19 16:24:40.026060195 -0400 -+++ libtirpc-0.1.11/src/xdr_array.c 2009-05-19 16:39:44.234808807 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/xdr.c.BAD libtirpc-0.1.11/src/xdr.c ---- libtirpc-0.1.11/src/xdr.c.BAD 2009-05-19 16:24:40.029059739 -0400 -+++ libtirpc-0.1.11/src/xdr.c 2009-05-19 16:39:56.179058802 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/xdr_float.c.BAD libtirpc-0.1.11/src/xdr_float.c ---- libtirpc-0.1.11/src/xdr_float.c.BAD 2009-05-19 16:24:40.032059423 -0400 -+++ libtirpc-0.1.11/src/xdr_float.c 2009-05-19 16:40:09.051058701 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/xdr_mem.c.BAD libtirpc-0.1.11/src/xdr_mem.c ---- libtirpc-0.1.11/src/xdr_mem.c.BAD 2009-05-19 16:24:40.035059526 -0400 -+++ libtirpc-0.1.11/src/xdr_mem.c 2009-05-19 16:40:29.786809071 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/xdr_rec.c.BAD libtirpc-0.1.11/src/xdr_rec.c ---- libtirpc-0.1.11/src/xdr_rec.c.BAD 2009-05-19 16:24:40.038059908 -0400 -+++ libtirpc-0.1.11/src/xdr_rec.c 2009-05-19 16:40:43.939059061 -0400 -@@ -1,31 +1,30 @@ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. - * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/xdr_reference.c.BAD libtirpc-0.1.11/src/xdr_reference.c ---- libtirpc-0.1.11/src/xdr_reference.c.BAD 2009-05-19 16:24:40.041059661 -0400 -+++ libtirpc-0.1.11/src/xdr_reference.c 2009-05-19 16:40:55.474809106 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/src/xdr_sizeof.c.BAD libtirpc-0.1.11/src/xdr_sizeof.c ---- libtirpc-0.1.11/src/xdr_sizeof.c.BAD 2009-05-19 16:24:40.044059695 -0400 -+++ libtirpc-0.1.11/src/xdr_sizeof.c 2009-05-19 16:41:07.842808825 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * xdr_sizeof.c -diff -up libtirpc-0.1.11/src/xdr_stdio.c.BAD libtirpc-0.1.11/src/xdr_stdio.c ---- libtirpc-0.1.11/src/xdr_stdio.c.BAD 2009-05-19 16:24:40.047060286 -0400 -+++ libtirpc-0.1.11/src/xdr_stdio.c 2009-05-19 16:41:19.658808881 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - #include -diff -up libtirpc-0.1.11/tirpc/rpc/auth_des.h.BAD libtirpc-0.1.11/tirpc/rpc/auth_des.h ---- libtirpc-0.1.11/tirpc/rpc/auth_des.h.BAD 2009-05-19 16:24:40.050060110 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/auth_des.h 2009-05-19 16:41:46.457818626 -0400 -@@ -1,32 +1,31 @@ - /* @(#)auth_des.h 2.2 88/07/29 4.0 RPCSRC; from 1.3 88/02/08 SMI */ - /* $FreeBSD: src/include/rpc/auth_des.h,v 1.3 2002/03/23 17:24:55 imp Exp $ */ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)auth_des.h 2.2 88/07/29 4.0 RPCSRC - * from: @(#)auth_des.h 1.14 94/04/25 SMI -diff -up libtirpc-0.1.11/tirpc/rpc/auth.h.BAD libtirpc-0.1.11/tirpc/rpc/auth.h ---- libtirpc-0.1.11/tirpc/rpc/auth.h.BAD 2009-05-19 16:24:40.053060213 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/auth.h 2009-05-19 16:41:58.883059410 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: auth.h,v 1.15 2000/06/02 22:57:55 fvdl Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)auth.h 1.17 88/02/08 SMI - * from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/auth_kerb.h.BAD libtirpc-0.1.11/tirpc/rpc/auth_kerb.h ---- libtirpc-0.1.11/tirpc/rpc/auth_kerb.h.BAD 2009-05-19 16:24:40.055068429 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/auth_kerb.h 2009-05-19 16:42:12.177862510 -0400 -@@ -1,31 +1,30 @@ - /* $FreeBSD: src/include/rpc/auth_kerb.h,v 1.2 2002/09/04 23:58:23 alfred Exp $ */ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * auth_kerb.h, Protocol for Kerberos style authentication for RPC -diff -up libtirpc-0.1.11/tirpc/rpc/auth_unix.h.BAD libtirpc-0.1.11/tirpc/rpc/auth_unix.h ---- libtirpc-0.1.11/tirpc/rpc/auth_unix.h.BAD 2009-05-19 16:24:40.057059116 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/auth_unix.h 2009-05-19 16:42:23.569857585 -0400 -@@ -1,30 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)auth_unix.h 1.8 88/02/08 SMI - * from: @(#)auth_unix.h 2.2 88/07/29 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/clnt.h.BAD libtirpc-0.1.11/tirpc/rpc/clnt.h ---- libtirpc-0.1.11/tirpc/rpc/clnt.h.BAD 2009-05-19 16:24:40.059059860 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/clnt.h 2009-05-19 16:42:45.051058982 -0400 -@@ -1,49 +1,31 @@ - /* $NetBSD: clnt.h,v 1.14 2000/06/02 22:57:55 fvdl Exp $ */ - - /* -- * The contents of this file are subject to the Sun Standards -- * License Version 1.0 the (the "License";) You may not use -- * this file except in compliance with the License. You may -- * obtain a copy of the License at lib/libc/rpc/LICENSE -- * -- * Software distributed under the License is distributed on -- * an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either -- * express or implied. See the License for the specific -- * language governing rights and limitations under the License. -- * -- * The Original Code is Copyright 1998 by Sun Microsystems, Inc -- * -- * The Initial Developer of the Original Code is: Sun -- * Microsystems, Inc. -- * -- * All Rights Reserved. -- * -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)clnt.h 1.31 94/04/29 SMI - * from: @(#)clnt.h 2.1 88/07/29 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/clnt_soc.h.BAD libtirpc-0.1.11/tirpc/rpc/clnt_soc.h ---- libtirpc-0.1.11/tirpc/rpc/clnt_soc.h.BAD 2009-05-19 16:24:40.061058578 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/clnt_soc.h 2009-05-19 16:43:00.546829824 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/clnt_soc.h,v 1.2 2002/03/23 17:24:55 imp Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1984 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/des_crypt.h.BAD libtirpc-0.1.11/tirpc/rpc/des_crypt.h ---- libtirpc-0.1.11/tirpc/rpc/des_crypt.h.BAD 2009-05-19 16:24:40.063059602 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/des_crypt.h 2009-05-19 16:43:16.994809124 -0400 -@@ -6,32 +6,31 @@ - * Copyright (C) 1986, Sun Microsystems, Inc. - */ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/des.h.BAD libtirpc-0.1.11/tirpc/rpc/des.h ---- libtirpc-0.1.11/tirpc/rpc/des.h.BAD 2009-05-19 16:24:40.065058110 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/des.h 2009-05-19 16:43:27.889858269 -0400 -@@ -1,32 +1,31 @@ - /* @(#)des.h 2.2 88/08/10 4.0 RPCSRC; from 2.7 88/02/08 SMI */ - /* $FreeBSD: src/include/rpc/des.h,v 1.4 2002/03/23 17:24:55 imp Exp $ */ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Generic DES driver interface -diff -up libtirpc-0.1.11/tirpc/rpc/nettype.h.BAD libtirpc-0.1.11/tirpc/rpc/nettype.h ---- libtirpc-0.1.11/tirpc/rpc/nettype.h.BAD 2009-05-19 16:24:40.067078899 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/nettype.h 2009-05-19 16:43:40.441858793 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/nettype.h,v 1.2 2002/03/23 17:24:55 imp Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/pmap_clnt.h.BAD libtirpc-0.1.11/tirpc/rpc/pmap_clnt.h ---- libtirpc-0.1.11/tirpc/rpc/pmap_clnt.h.BAD 2009-05-19 16:24:40.068058073 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/pmap_clnt.h 2009-05-19 16:43:55.089837326 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: pmap_clnt.h,v 1.9 2000/06/02 22:57:55 fvdl Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)pmap_clnt.h 1.11 88/02/08 SMI - * from: @(#)pmap_clnt.h 2.1 88/07/29 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/pmap_prot.h.BAD libtirpc-0.1.11/tirpc/rpc/pmap_prot.h ---- libtirpc-0.1.11/tirpc/rpc/pmap_prot.h.BAD 2009-05-19 16:24:40.070059795 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/pmap_prot.h 2009-05-19 16:44:06.130808918 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: pmap_prot.h,v 1.8 2000/06/02 22:57:55 fvdl Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)pmap_prot.h 1.14 88/02/08 SMI - * from: @(#)pmap_prot.h 2.1 88/07/29 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/pmap_rmt.h.BAD libtirpc-0.1.11/tirpc/rpc/pmap_rmt.h ---- libtirpc-0.1.11/tirpc/rpc/pmap_rmt.h.BAD 2009-05-19 16:24:40.072078139 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/pmap_rmt.h 2009-05-19 16:44:19.290809239 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: pmap_rmt.h,v 1.7 1998/02/11 23:01:23 lukem Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)pmap_rmt.h 1.2 88/02/08 SMI - * from: @(#)pmap_rmt.h 2.1 88/07/29 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/raw.h.BAD libtirpc-0.1.11/tirpc/rpc/raw.h ---- libtirpc-0.1.11/tirpc/rpc/raw.h.BAD 2009-05-19 16:24:40.073058990 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/raw.h 2009-05-19 16:44:34.266809458 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/raw.h,v 1.1 2001/03/19 12:49:47 alfred Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/rpcb_clnt.h.BAD libtirpc-0.1.11/tirpc/rpc/rpcb_clnt.h ---- libtirpc-0.1.11/tirpc/rpc/rpcb_clnt.h.BAD 2009-05-19 16:24:40.075059175 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/rpcb_clnt.h 2009-05-19 16:44:50.771060387 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/rpcb_clnt.h,v 1.2 2002/03/23 17:24:55 imp Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/rpcb_prot.h.BAD libtirpc-0.1.11/tirpc/rpc/rpcb_prot.h ---- libtirpc-0.1.11/tirpc/rpc/rpcb_prot.h.BAD 2009-05-19 16:24:40.077059919 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/rpcb_prot.h 2009-05-19 16:45:11.715058349 -0400 -@@ -23,32 +23,31 @@ - /* - * $FreeBSD: src/include/rpc/rpcb_prot.x,v 1.3 2002/03/13 10:29:06 obrien Exp $ - * -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1988 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/rpcb_prot.x.BAD libtirpc-0.1.11/tirpc/rpc/rpcb_prot.x ---- libtirpc-0.1.11/tirpc/rpc/rpcb_prot.x.BAD 2009-05-19 16:24:40.079078542 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/rpcb_prot.x 2009-05-19 16:45:59.923081331 -0400 -@@ -1,32 +1,31 @@ - %/* - % * $FreeBSD: src/include/rpc/rpcb_prot.x,v 1.3 2002/03/13 10:29:06 obrien Exp $ - % * --% * Sun RPC is a product of Sun Microsystems, Inc. and is provided for --% * unrestricted use provided that this legend is included on all tape --% * media and as a part of the software program in whole or part. Users --% * may copy or modify Sun RPC without charge, but are not authorized --% * to license or distribute it to anyone else except as part of a product or --% * program developed by the user. --% * --% * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE --% * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR --% * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. --% * --% * Sun RPC is provided with no support and without any obligation on the --% * part of Sun Microsystems, Inc. to assist in its use, correction, --% * modification or enhancement. --% * --% * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE --% * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC --% * OR ANY PART THEREOF. --% * --% * In no event will Sun Microsystems, Inc. be liable for any lost revenue --% * or profits or other special, indirect and consequential damages, even if --% * Sun has been advised of the possibility of such damages. --% * --% * Sun Microsystems, Inc. --% * 2550 Garcia Avenue --% * Mountain View, California 94043 -+% * Copyright (c) 2009, Sun Microsystems, Inc. -+% * All rights reserved. -+% * -+% * Redistribution and use in source and binary forms, with or without -+% * modification, are permitted provided that the following conditions are met: -+% * - Redistributions of source code must retain the above copyright notice, -+% * this list of conditions and the following disclaimer. -+% * - Redistributions in binary form must reproduce the above copyright notice, -+% * this list of conditions and the following disclaimer in the documentation -+% * and/or other materials provided with the distribution. -+% * - Neither the name of Sun Microsystems, Inc. nor the names of its -+% * contributors may be used to endorse or promote products derived -+% * from this software without specific prior written permission. -+% * -+% * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+% * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+% * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+% * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+% * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+% * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+% * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+% * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+% * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+% * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+% * POSSIBILITY OF SUCH DAMAGE. - % */ - %/* - % * Copyright (c) 1988 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/rpc_com.h.BAD libtirpc-0.1.11/tirpc/rpc/rpc_com.h ---- libtirpc-0.1.11/tirpc/rpc/rpc_com.h.BAD 2009-05-19 16:24:40.080059044 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/rpc_com.h 2009-05-19 16:46:13.546809268 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/rpc_com.h,v 1.6 2003/01/16 07:13:51 mbr Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/rpcent.h.BAD libtirpc-0.1.11/tirpc/rpc/rpcent.h ---- libtirpc-0.1.11/tirpc/rpc/rpcent.h.BAD 2009-05-19 16:24:40.082059159 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/rpcent.h 2009-05-19 16:46:25.363059114 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/rpcent.h,v 1.2 2002/03/23 17:24:55 imp Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/rpc.h.BAD libtirpc-0.1.11/tirpc/rpc/rpc.h ---- libtirpc-0.1.11/tirpc/rpc/rpc.h.BAD 2009-05-19 16:24:40.084058576 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/rpc.h 2009-05-19 16:46:39.266809396 -0400 -@@ -1,31 +1,29 @@ - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/tirpc/rpc/rpc_msg.h.BAD libtirpc-0.1.11/tirpc/rpc/rpc_msg.h ---- libtirpc-0.1.11/tirpc/rpc/rpc_msg.h.BAD 2009-05-19 16:24:40.108809425 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/rpc_msg.h 2009-05-19 16:46:57.010809497 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: rpc_msg.h,v 1.11 2000/06/02 22:57:56 fvdl Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)rpc_msg.h 1.7 86/07/16 SMI - * from: @(#)rpc_msg.h 2.1 88/07/29 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/svc_auth.h.BAD libtirpc-0.1.11/tirpc/rpc/svc_auth.h ---- libtirpc-0.1.11/tirpc/rpc/svc_auth.h.BAD 2009-05-19 16:24:40.110809610 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/svc_auth.h 2009-05-19 16:47:11.378808505 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: svc_auth.h,v 1.8 2000/06/02 22:57:57 fvdl Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)svc_auth.h 1.6 86/07/16 SMI - * @(#)svc_auth.h 2.1 88/07/29 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/svc_dg.h.BAD libtirpc-0.1.11/tirpc/rpc/svc_dg.h ---- libtirpc-0.1.11/tirpc/rpc/svc_dg.h.BAD 2009-05-19 16:24:40.112809096 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/svc_dg.h 2009-05-19 16:47:23.042809151 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/svc_dg.h,v 1.1 2001/03/19 12:49:47 alfred Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - - /* -diff -up libtirpc-0.1.11/tirpc/rpc/svc.h.BAD libtirpc-0.1.11/tirpc/rpc/svc.h ---- libtirpc-0.1.11/tirpc/rpc/svc.h.BAD 2009-05-19 16:24:40.114807954 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/svc.h 2009-05-19 16:47:35.531081363 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: svc.h,v 1.17 2000/06/02 22:57:56 fvdl Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)svc.h 1.35 88/12/17 SMI - * from: @(#)svc.h 1.27 94/04/25 SMI -diff -up libtirpc-0.1.11/tirpc/rpc/svc_soc.h.BAD libtirpc-0.1.11/tirpc/rpc/svc_soc.h ---- libtirpc-0.1.11/tirpc/rpc/svc_soc.h.BAD 2009-05-19 16:24:40.115807732 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/svc_soc.h 2009-05-19 16:47:50.889872629 -0400 -@@ -2,32 +2,31 @@ - /* $FreeBSD: src/include/rpc/svc_soc.h,v 1.2 2002/03/23 17:24:55 imp Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - */ - /* - * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc. -diff -up libtirpc-0.1.11/tirpc/rpc/types.h.BAD libtirpc-0.1.11/tirpc/rpc/types.h ---- libtirpc-0.1.11/tirpc/rpc/types.h.BAD 2009-05-19 16:24:40.117807917 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/types.h 2009-05-19 16:48:01.961809572 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: types.h,v 1.13 2000/06/13 01:02:44 thorpej Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. - * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)types.h 1.18 87/07/24 SMI - * from: @(#)types.h 2.3 88/08/15 4.0 RPCSRC -diff -up libtirpc-0.1.11/tirpc/rpc/xdr.h.BAD libtirpc-0.1.11/tirpc/rpc/xdr.h ---- libtirpc-0.1.11/tirpc/rpc/xdr.h.BAD 2009-05-19 16:24:40.119807613 -0400 -+++ libtirpc-0.1.11/tirpc/rpc/xdr.h 2009-05-19 16:48:16.730808824 -0400 -@@ -1,32 +1,31 @@ - /* $NetBSD: xdr.h,v 1.19 2000/07/17 05:00:45 matt Exp $ */ - - /* -- * Sun RPC is a product of Sun Microsystems, Inc. and is provided for -- * unrestricted use provided that this legend is included on all tape -- * media and as a part of the software program in whole or part. Users -- * may copy or modify Sun RPC without charge, but are not authorized -- * to license or distribute it to anyone else except as part of a product or -- * program developed by the user. -- * -- * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE -- * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR -- * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. -- * -- * Sun RPC is provided with no support and without any obligation on the -- * part of Sun Microsystems, Inc. to assist in its use, correction, -- * modification or enhancement. -- * -- * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE -- * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC -- * OR ANY PART THEREOF. -- * -- * In no event will Sun Microsystems, Inc. be liable for any lost revenue -- * or profits or other special, indirect and consequential damages, even if -- * Sun has been advised of the possibility of such damages. -- * -- * Sun Microsystems, Inc. -- * 2550 Garcia Avenue -- * Mountain View, California 94043 -+ * Copyright (c) 2009, Sun Microsystems, Inc. -+ * All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions are met: -+ * - Redistributions of source code must retain the above copyright notice, -+ * this list of conditions and the following disclaimer. -+ * - Redistributions in binary form must reproduce the above copyright notice, -+ * this list of conditions and the following disclaimer in the documentation -+ * and/or other materials provided with the distribution. -+ * - Neither the name of Sun Microsystems, Inc. nor the names of its -+ * contributors may be used to endorse or promote products derived -+ * from this software without specific prior written permission. -+ * -+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -+ * POSSIBILITY OF SUCH DAMAGE. - * - * from: @(#)xdr.h 1.19 87/04/22 SMI - * from: @(#)xdr.h 2.2 88/07/29 4.0 RPCSRC diff --git a/libtirpc.spec b/libtirpc.spec index c9a9a4f..1113b9e 100644 --- a/libtirpc.spec +++ b/libtirpc.spec @@ -1,6 +1,6 @@ Name: libtirpc -Version: 0.1.11 -Release: 3%{?dist} +Version: 0.2.0 +Release: 1%{?dist} Summary: Transport Independent RPC Library Group: System Environment/Libraries License: SISSL and BSD @@ -30,10 +30,7 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires(devel): pkgconfig man -Patch1: libtirpc-0.1.12-rc1.patch - -Patch100: libtirpc-0.1.7-compile.patch -Patch101: libtirpc-changetoBSDlicense.patch +Patch1: libtirpc-0.2.0-rc1.patch %description devel This package includes header files and libraries necessary for @@ -44,9 +41,6 @@ developing programs which use the tirpc library. %setup -q %patch1 -p1 -%patch100 -p1 -%patch101 -p1 - # Remove .orig files find . -name "*.orig" | xargs rm -f @@ -92,21 +86,11 @@ rm -rf %{buildroot} %files devel %defattr(0644,root,root,755) %dir %{_includedir}/tirpc -%dir %{_includedir}/tirpc/misc %dir %{_includedir}/tirpc/rpc %dir %{_includedir}/tirpc/rpcsvc %{_libdir}/libtirpc.so %{_libdir}/pkgconfig/libtirpc.pc -%{_includedir}/tirpc/fpmath.h -%{_includedir}/tirpc/getpeereid.h -%{_includedir}/tirpc/libc_private.h -%{_includedir}/tirpc/misc/event.h -%{_includedir}/tirpc/misc/queue.h -%{_includedir}/tirpc/misc/socket.h -%{_includedir}/tirpc/namespace.h %{_includedir}/tirpc/netconfig.h -%{_includedir}/tirpc/nss_tls.h -%{_includedir}/tirpc/reentrant.h %{_includedir}/tirpc/rpc/auth.h %{_includedir}/tirpc/rpc/auth_des.h %{_includedir}/tirpc/rpc/auth_gss.h @@ -137,11 +121,12 @@ rm -rf %{buildroot} %{_includedir}/tirpc/rpc/xdr.h %{_includedir}/tirpc/rpcsvc/crypt.h %{_includedir}/tirpc/rpcsvc/crypt.x -%{_includedir}/tirpc/spinlock.h -%{_includedir}/tirpc/un-namespace.h %{_mandir}/*/* %changelog +* Fri May 29 2009 Steve Dickson 0.2.0-1 +- Updated to latest upstream version: 0.2.0 + * Tue May 19 2009 Tom "spot" Callaway 0.1.11-3 - Replace the Sun RPC license with the BSD license, with the explicit permission of Sun Microsystems diff --git a/sources b/sources index b492989..aa2dc7d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c656b7bf47e8bddbdefcd0b6a6f77b71 libtirpc-0.1.11.tar.bz2 +b3b513a8825aa227deac63ea38c64f41 libtirpc-0.2.0.tar.bz2