From: Vinson Lee <[email protected]> This patch fixes build errors introduced with commit 7dc42c97696f135e1fef92e612ecc66bf8d74318.
setgid03.c:36:23: error: static declaration of ‘getpwnam’ follows non-static declaration In file included from setgid03.c:24:0: /usr/include/pwd.h:117:23: note: previous declaration of ‘getpwnam’ was here setgid03.c:39:1: error: duplicate ‘static’ setgid03.c:40:1: error: duplicate ‘static’ Signed-off-by: Vinson Lee <[email protected]> --- testcases/kernel/syscalls/setgid/setgid03.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testcases/kernel/syscalls/setgid/setgid03.c b/testcases/kernel/syscalls/setgid/setgid03.c index 8b71401..8c76556 100644 --- a/testcases/kernel/syscalls/setgid/setgid03.c +++ b/testcases/kernel/syscalls/setgid/setgid03.c @@ -33,11 +33,11 @@ int TST_TOTAL = 1; static char ltpuser1[] = "nobody"; static char root[] = "root"; -static struct passwd *getpwnam(), *ltpuser1pwent, *rootpwent; +static struct passwd *ltpuser1pwent, *rootpwent; static gid_t mygid; -static static void setup(void); -static static void cleanup(void); +static void setup(void); +static void cleanup(void); int main(int ac, char **av) { -- 1.8.1.2 ------------------------------------------------------------------------------ How ServiceNow helps IT people transform IT departments: 1. Consolidate legacy IT systems to a single system of record for IT 2. Standardize and globalize service processes across IT 3. Implement zero-touch automation to replace manual, redundant tasks http://pubads.g.doubleclick.net/gampad/clk?id=51271111&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
