From f6f0f00f73af490eeca0c849f4f2c48775f4cf41 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sat, 1 May 2010 13:46:26 -0400 Subject: [PATCH] Some Solaris systems seem to give root a gid of 1. SVN-Revision: 2347 --- cpio/test/test_owner_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpio/test/test_owner_parse.c b/cpio/test/test_owner_parse.c index 9875e91e4..8f9343ab9 100644 --- a/cpio/test/test_owner_parse.c +++ b/cpio/test/test_owner_parse.c @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #if !defined(_WIN32) #define ROOT "root" static int root_uids[] = { 0 }; -static int root_gids[] = { 0 }; +static int root_gids[] = { 0, 1 }; #elif defined(__CYGWIN__) /* On cygwin, the Administrator user most likely exists (unless * it has been renamed or is in a non-English localization), but -- 2.47.3