From f9efbf3af2a68c42d8c5dda54b2c9d685ddb7c40 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sat, 8 Oct 2011 03:24:17 -0400 Subject: Fix netname2host --- sunrpc/netname.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sunrpc') diff --git a/sunrpc/netname.c b/sunrpc/netname.c index e1f1cf68f1..7de2b86be2 100644 --- a/sunrpc/netname.c +++ b/sunrpc/netname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998, 1999, 2002, 2007 Free Software Foundation, Inc. +/* Copyright (C) 1997-1999, 2002, 2007, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. @@ -196,9 +196,8 @@ netname2host (const char netname[MAXNETNAMELEN + 1], char *hostname, const int hostlen) { char *p1, *p2; - char buffer[MAXNETNAMELEN + 1]; - p1 = strchr (buffer, '.'); + p1 = strchr (netname, '.'); if (p1 == NULL) return 0; p1++; -- cgit v1.2.3