summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/pwdgrp.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/pwdgrp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/pwdgrp.c b/cpukit/libcsupport/src/pwdgrp.c
index f4a10f7f46..154a92a11a 100644
--- a/cpukit/libcsupport/src/pwdgrp.c
+++ b/cpukit/libcsupport/src/pwdgrp.c
@@ -67,9 +67,13 @@ static void pwdgrp_init(void)
/*
* Do the best to create this directory.
+ *
+ * /etc could be created by the network stack initialization or an initial
+ * filesystem image. Deliberately ignore the return value.
*/
sc = mkdir("/etc", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
- _Assert_Unused_variable_equals(sc, 0);
+ _Assert((sc == 0) || (sc == -1 && errno == EEXIST));
+ (void) sc;
/*
* Initialize /etc/passwd