From: Eric Andersen Date: Mon, 14 Jul 2003 21:50:51 +0000 (-0000) Subject: Looks like I forgot one little tiny detail... X-Git-Tag: 1_00_pre1~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43da9d19ef9ff17ada12ee6ece55b6af19559a43;p=platform%2Fupstream%2Fbusybox.git Looks like I forgot one little tiny detail... --- diff --git a/loginutils/delgroup.c b/loginutils/delgroup.c index f74f64f..91edf29 100644 --- a/loginutils/delgroup.c +++ b/loginutils/delgroup.c @@ -31,6 +31,8 @@ #if ! defined CONFIG_DELUSER #include "delline.c" +#else +extern int del_line_matching(const char *login, const char *filename); #endif int delgroup_main(int argc, char **argv) @@ -57,4 +59,4 @@ int delgroup_main(int argc, char **argv) return (EXIT_SUCCESS); } -/* $Id: delgroup.c,v 1.1 2003/07/14 20:20:45 andersen Exp $ */ +/* $Id: delgroup.c,v 1.2 2003/07/14 21:50:51 andersen Exp $ */ diff --git a/loginutils/delline.c b/loginutils/delline.c index ed29ca0..8d534c8 100644 --- a/loginutils/delline.c +++ b/loginutils/delline.c @@ -64,7 +64,7 @@ static inline Bounds boundary(const char *buffer, const char *login) /* grep -v ^login (except it only deletes the first match) */ /* ...in fact, I think I'm going to simplify this later */ -static int del_line_matching(const char *login, const char *filename) +int del_line_matching(const char *login, const char *filename) { char *buffer; FILE *passwd; @@ -110,4 +110,4 @@ static int del_line_matching(const char *login, const char *filename) } -/* $Id: delline.c,v 1.1 2003/07/14 20:20:45 andersen Exp $ */ +/* $Id: delline.c,v 1.2 2003/07/14 21:50:51 andersen Exp $ */