From: Alejandro Colomar Date: Fri, 17 May 2024 00:11:22 +0000 (+0200) Subject: src/usermod.c: Rename update_gshadow() => update_gshadow_file() X-Git-Tag: 4.15.2~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=81bc78ec5cdd59790bc7c591c9d1f66bd4d7b78e;p=thirdparty%2Fshadow.git src/usermod.c: Rename update_gshadow() => update_gshadow_file() Signed-off-by: Alejandro Colomar --- diff --git a/src/usermod.c b/src/usermod.c index aaa83d7d7..3048f8013 100644 --- a/src/usermod.c +++ b/src/usermod.c @@ -181,7 +181,7 @@ NORETURN static void fail_exit (int); static void update_group_file(void); #ifdef SHADOWGRP -static void update_gshadow (void); +static void update_gshadow_file(void); #endif static void grp_update (void); @@ -798,7 +798,8 @@ update_group_file(void) } #ifdef SHADOWGRP -static void update_gshadow (void) +static void +update_gshadow_file(void) { bool changed; const struct sgrp *sgrp; @@ -954,7 +955,7 @@ static void grp_update (void) update_group_file(); #ifdef SHADOWGRP if (is_shadow_grp) { - update_gshadow (); + update_gshadow_file(); } #endif }