Fix style nit in function declarations

This commit is contained in:
Todd C. Miller
2010-07-02 15:56:04 -04:00
parent 2822c6c8ce
commit 7e91ebff14

View File

@@ -71,7 +71,8 @@ extern void mysetgrent(void);
extern void myendgrent(void); extern void myendgrent(void);
extern struct group *mygetgrnam(const char *); extern struct group *mygetgrnam(const char *);
static int sample_init(int version, sudo_printf_t sudo_printf, char *const argv[]) static int
sample_init(int version, sudo_printf_t sudo_printf, char *const argv[])
{ {
struct stat sb; struct stat sb;
@@ -108,7 +109,8 @@ static int sample_init(int version, sudo_printf_t sudo_printf, char *const argv[
return TRUE; return TRUE;
} }
static void sample_cleanup(void) static void
sample_cleanup(void)
{ {
myendgrent(); myendgrent();
} }
@@ -116,7 +118,8 @@ static void sample_cleanup(void)
/* /*
* Returns TRUE if "user" is a member of "group", else FALSE. * Returns TRUE if "user" is a member of "group", else FALSE.
*/ */
static int sample_query(const char *user, const char *group, const struct passwd *pwd) static int
sample_query(const char *user, const char *group, const struct passwd *pwd)
{ {
struct group *grp; struct group *grp;
char **member; char **member;