From: Tobias Stoeckmann Date: Mon, 15 Dec 2025 16:03:52 +0000 (+0100) Subject: passwd: Fix style X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1229582881bc57c986219ae8f416a7aba576b00a;p=thirdparty%2Fshadow.git passwd: Fix style No functional change Reviewed-by: Alejandro Colomar Signed-off-by: Tobias Stoeckmann --- diff --git a/src/passwd.c b/src/passwd.c index 82c169432..918f8e5d1 100644 --- a/src/passwd.c +++ b/src/passwd.c @@ -128,16 +128,16 @@ static bool do_update_pwd = false; */ /* local function prototypes */ -NORETURN static void usage (int); +NORETURN static void usage(int); -static int new_password (const struct passwd *); +static int new_password(const struct passwd *); -static void check_password (const struct passwd *, const struct spwd *); -static /*@observer@*/const char *pw_status (const char *); -static void print_status (const struct passwd *); -NORETURN static void fail_exit (int, bool); -NORETURN static void oom (bool process_selinux); -static char *update_crypt_pw (char *, bool); +static void check_password(const struct passwd *, const struct spwd *); +static /*@observer@*/const char *pw_status(const char *); +static void print_status(const struct passwd *); +NORETURN static void fail_exit(int, bool); +NORETURN static void oom(bool); +static char *update_crypt_pw(char *, bool); static void update_noshadow(bool); static void update_shadow(bool);