expose a_num.

This commit is contained in:
christos 2006-02-02 23:42:00 +00:00
parent ae7a5ee5fc
commit 1098ee8a76
2 changed files with 8 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fattr.c,v 1.4 2005/03/03 21:15:26 dsl Exp $ */ /* $NetBSD: fattr.c,v 1.5 2006/02/02 23:42:00 christos Exp $ */
/*- /*-
* Copyright (c) 2000 The NetBSD Foundation, Inc. * Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -35,7 +35,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #ifndef lint
__RCSID("$NetBSD: fattr.c,v 1.4 2005/03/03 21:15:26 dsl Exp $"); __RCSID("$NetBSD: fattr.c,v 1.5 2006/02/02 23:42:00 christos Exp $");
#endif /* not lint */ #endif /* not lint */
#include <sys/cdefs.h> #include <sys/cdefs.h>
@ -53,8 +53,8 @@ __RCSID("$NetBSD: fattr.c,v 1.4 2005/03/03 21:15:26 dsl Exp $");
#include "fattr.h" #include "fattr.h"
static int int
num_id(const char *s, const char *id_type) a_num(const char *s, const char *id_type)
{ {
int id; int id;
char *ep; char *ep;
@ -72,7 +72,7 @@ a_gid(const char *s)
if ((gr = getgrnam(s)) != NULL) if ((gr = getgrnam(s)) != NULL)
return gr->gr_gid; return gr->gr_gid;
return num_id(s, "group"); return a_num(s, "group");
} }
uid_t uid_t
@ -82,7 +82,7 @@ a_uid(const char *s)
if ((pw = getpwnam(s)) != NULL) if ((pw = getpwnam(s)) != NULL)
return pw->pw_uid; return pw->pw_uid;
return num_id(s, "user"); return a_num(s, "user");
} }
mode_t mode_t

View File

@ -1,4 +1,4 @@
/* $NetBSD: fattr.h,v 1.3 2005/03/03 21:15:26 dsl Exp $ */ /* $NetBSD: fattr.h,v 1.4 2006/02/02 23:42:00 christos Exp $ */
/*- /*-
* Copyright (c) 2000 The NetBSD Foundation, Inc. * Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -33,6 +33,7 @@
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
int a_num(const char *, const char *);
gid_t a_gid(const char *); gid_t a_gid(const char *);
uid_t a_uid(const char *); uid_t a_uid(const char *);
mode_t a_mask(const char *); mode_t a_mask(const char *);