Ticket #6616: libtirpc.patch

File libtirpc.patch, 3.1 KB (added by Armin K, 9 years ago)
  • src/Makefile.am

    diff -Naur a/src/Makefile.am b/src/Makefile.am
    a b  
    6969endif
    7070
    7171libtirpc_la_SOURCES += key_call.c key_prot_xdr.c getpublickey.c
    72 libtirpc_la_SOURCES += netname.c netnamer.c rtime.c
     72libtirpc_la_SOURCES += netname.c netnamer.c rpcdname.c rtime.c
    7373
    7474CLEANFILES             = cscope.* *~
    7575DISTCLEANFILES         = Makefile.in
  • src/rpcdname.c

    diff -Naur a/src/rpcdname.c b/src/rpcdname.c
    a b  
     1/*
     2 * Copyright (c) 2009, Sun Microsystems, Inc.
     3 * All rights reserved.
     4 *
     5 * Redistribution and use in source and binary forms, with or without
     6 * modification, are permitted provided that the following conditions are met:
     7 * - Redistributions of source code must retain the above copyright notice,
     8 *   this list of conditions and the following disclaimer.
     9 * - Redistributions in binary form must reproduce the above copyright notice,
     10 *   this list of conditions and the following disclaimer in the documentation
     11 *   and/or other materials provided with the distribution.
     12 * - Neither the name of Sun Microsystems, Inc. nor the names of its
     13 *   contributors may be used to endorse or promote products derived
     14 *   from this software without specific prior written permission.
     15 *
     16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
     20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26 * POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/*
     30 * rpcdname.c
     31 * Gets the default domain name
     32 */
     33
     34#include <stdlib.h>
     35#include <unistd.h>
     36#include <string.h>
     37
     38static char *default_domain = 0;
     39
     40static char *
     41get_default_domain()
     42{
     43        char temp[256];
     44
     45        if (default_domain)
     46                return (default_domain);
     47        if (getdomainname(temp, sizeof(temp)) < 0)
     48                return (0);
     49        if ((int) strlen(temp) > 0) {
     50                default_domain = (char *)malloc((strlen(temp)+(unsigned)1));
     51                if (default_domain == 0)
     52                        return (0);
     53                (void) strcpy(default_domain, temp);
     54                return (default_domain);
     55        }
     56        return (0);
     57}
     58
     59/*
     60 * This is a wrapper for the system call getdomainname which returns a
     61 * ypclnt.h error code in the failure case.  It also checks to see that
     62 * the domain name is non-null, knowing that the null string is going to
     63 * get rejected elsewhere in the NIS client package.
     64 */
     65int
     66__rpc_get_default_domain(domain)
     67        char **domain;
     68{
     69        if ((*domain = get_default_domain()) != 0)
     70                return (0);
     71        return (-1);
     72}