From a94a9740d545817294cc431180db0f22fc923b13 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 16 Jul 2014 15:03:11 -0500 Subject: [PATCH] checkpath: style fixes --- src/rc/checkpath.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c index b0384bdb..ecd845f6 100644 --- a/src/rc/checkpath.c +++ b/src/rc/checkpath.c @@ -59,9 +59,8 @@ typedef enum { extern const char *applet; -static int -do_check(char *path, uid_t uid, gid_t gid, mode_t mode, inode_t type, - bool trunc, bool chowner, bool selinux_on) +static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode, + inode_t type, bool trunc, bool chowner, bool selinux_on) { struct stat st; int fd, flags; @@ -157,8 +156,8 @@ do_check(char *path, uid_t uid, gid_t gid, mode_t mode, inode_t type, return 0; } -static int -parse_owner(struct passwd **user, struct group **group, const char *owner) +static int parse_owner(struct passwd **user, struct group **group, + const char *owner) { char *u = xstrdup (owner); char *g = strchr (u, ':'); @@ -217,8 +216,7 @@ static const char * const longopts_help[] = { }; #include "_usage.c" -int -checkpath(int argc, char **argv) +int checkpath(int argc, char **argv) { int opt; uid_t uid = geteuid();