]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
passwd: Fix style
authorTobias Stoeckmann <tobias@stoeckmann.org>
Mon, 15 Dec 2025 16:03:52 +0000 (17:03 +0100)
committerAlejandro Colomar <foss+github@alejandro-colomar.es>
Tue, 16 Dec 2025 12:22:43 +0000 (13:22 +0100)
No functional change

Reviewed-by: Alejandro Colomar <alx@kernel.org>
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
src/passwd.c

index 82c169432625887b9ad5f991528ff596df0a032c..918f8e5d1c42c1fd610dc8156c44dbb6361ad16c 100644 (file)
@@ -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);