* src/chfn.c, src/chsh.c, src/groupdel.c, src/groupmems.c,

src/groupmod.c, src/grpck.c, src/login.c, src/logoutd.c,
	src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c,
	src/suauth.c, src/useradd.c, src/userdel.c, src/usermod.c,
	src/vipw.c: Complete the switch from the `' quotation style to ''.
	Do it also in SYSLOG messages. Quote some parameters. All this
	permits to merge some messages.
This commit is contained in:
nekral-guest
2008-08-06 15:51:52 +00:00
parent 2ebd2a08ff
commit 538600ef48
18 changed files with 92 additions and 82 deletions
+3 -3
View File
@@ -217,7 +217,7 @@ static void fail_exit (int code)
"adding user",
user_name, AUDIT_NO_ID, 0);
#endif
SYSLOG ((LOG_INFO, "failed adding user `%s', data deleted", user_name));
SYSLOG ((LOG_INFO, "failed adding user '%s', data deleted", user_name));
exit (code);
}
@@ -812,7 +812,7 @@ static void grp_update (void)
"adding user to group",
user_name, AUDIT_NO_ID, 1);
#endif
SYSLOG ((LOG_INFO, "add `%s' to group `%s'",
SYSLOG ((LOG_INFO, "add '%s' to group '%s'",
user_name, ngrp->gr_name));
}
@@ -864,7 +864,7 @@ static void grp_update (void)
"adding user to shadow group",
user_name, AUDIT_NO_ID, 1);
#endif
SYSLOG ((LOG_INFO, "add `%s' to shadow group `%s'",
SYSLOG ((LOG_INFO, "add '%s' to shadow group '%s'",
user_name, nsgrp->sg_name));
}
#endif /* SHADOWGRP */