nis/nss_nisplus: Kill warnings

This commit is contained in:
Ulrich Drepper 2011-07-06 22:22:48 -04:00
parent 6f0eec6710
commit 1a544854c2
3 changed files with 14 additions and 7 deletions

View File

@ -1,3 +1,10 @@
2011-07-06 Marek Polacek <mpolacek@redhat.com>
* nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
`status' variable.
* nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
Likewise.
2011-07-04 H.J. Lu <hongjiu.lu@intel.com>
* Makefile (strop-tests): Add strncat.

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1997,1998,2000-2003,2005,2006,2007
/* Copyright (C) 1997,1998,2000-2003,2005,2006,2007,2011
Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@suse.de>, 1997.
@ -40,10 +40,10 @@ static u_long tablename_len;
#define NISENTRYVAL(idx, col, res) \
(NIS_RES_OBJECT (res)[idx].zo_data.objdata_u.en_data.en_cols.en_cols_val[col].ec_value.ec_value_val)
(NIS_RES_OBJECT (res)[idx].zo_data.objdata_u.en_data.en_cols.en_cols_val[col].ec_value.ec_value_val)
#define NISENTRYLEN(idx, col, res) \
(NIS_RES_OBJECT (res)[idx].zo_data.objdata_u.en_data.en_cols.en_cols_val[col].ec_value.ec_value_len)
(NIS_RES_OBJECT (res)[idx].zo_data.objdata_u.en_data.en_cols.en_cols_val[col].ec_value.ec_value_len)
static int
_nss_nisplus_parse_etherent (nis_result *result, struct etherent *ether,
@ -136,7 +136,7 @@ _nss_nisplus_setetherent (int stayopen)
__libc_lock_unlock (lock);
return NSS_STATUS_SUCCESS;
return status;
}
enum nss_status

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1997, 2001, 2002, 2003, 2005, 2007
/* Copyright (C) 1997, 2001, 2002, 2003, 2005, 2007, 2011
Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
@ -57,7 +57,7 @@ _nss_nisplus_setspent (int stayopen)
__libc_lock_unlock (lock);
return NSS_STATUS_SUCCESS;
return status;
}
enum nss_status
@ -91,7 +91,7 @@ internal_nisplus_getspent_r (struct spwd *sp, char *buffer, size_t buflen,
{
saved_res = NULL;
if (pwd_tablename_val == NULL)
if (pwd_tablename_val == NULL)
{
enum nss_status status = _nss_pwd_create_tablename (errnop);