aboutsummaryrefslogtreecommitdiff
path: root/include/grp.h
diff options
context:
space:
mode:
authorRobert Griebl <griebl@gmx.de>2002-06-04 20:10:23 +0000
committerRobert Griebl <griebl@gmx.de>2002-06-04 20:10:23 +0000
commitea1a63a2011a44b143cc46c7d80a8152f5358e24 (patch)
tree3a71fbfa44c5a0887409c930a682c896aecb7425 /include/grp.h
parentc9aca4561ddb1165890fae0c8b921a2504c6273f (diff)
downloadbusybox-ea1a63a2011a44b143cc46c7d80a8152f5358e24.tar.gz
Fix for broken handling off BusyBox's own pwd/grp implementations
[Parts of this patch may overlap with my other two patches]
Diffstat (limited to 'include/grp.h')
-rw-r--r--include/grp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/grp.h b/include/grp.h
index 191c2d4e5..12fecd02e 100644
--- a/include/grp.h
+++ b/include/grp.h
@@ -1,14 +1,16 @@
#ifndef __CONFIG_GRP_H
#define __CONFIG_GRP_H
-#if defined USE_SYSTEM_PWD_GRP
-#include <grp.h>
+#if !defined CONFIG_USE_BB_PWD_GRP
+#include_next <grp.h>
+
#else
#include <sys/types.h>
#include <features.h>
#include <stdio.h>
+
/* The group structure */
struct group
{