aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getgrent_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/getgrent_r.c')
-rw-r--r--guts/getgrent_r.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/guts/getgrent_r.c b/guts/getgrent_r.c
deleted file mode 100644
index b02466a..0000000
--- a/guts/getgrent_r.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (c) 2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static int
- * wrap_getgrent_r(struct group *gbuf, char *buf, size_t buflen, struct group **gbufp) {
- * int rc = -1;
- */
-
- /* note that we don't wrap fgetgrent_r, since there's no path
- * references in it.
- */
- if (!pseudo_grp) {
- errno = ENOENT;
- return -1;
- }
- rc = fgetgrent_r(pseudo_grp, gbuf, buf, buflen, gbufp);
- if (rc == 0 && *gbufp) {
- if (*gbufp == gbuf) {
- pseudo_debug(3, "found group: %d/%s\n", gbuf->gr_gid, gbuf->gr_name);
- } else {
- pseudo_debug(1, "found group (%d), but it's wrong?", gbuf->gr_gid);
- }
- }
-
-/* return rc;
- * }
- */