Avoid ?: construct without the middle term.
This commit is contained in:
parent
72713d0b73
commit
d0de685c7a
@ -1,3 +1,7 @@
|
|||||||
|
2008-01-01 Nicolas François <nicolas.francois@centraliens.net>
|
||||||
|
|
||||||
|
* src/useradd.c: Avoid ?: construct without the middle term.
|
||||||
|
|
||||||
2008-01-01 Nicolas François <nicolas.francois@centraliens.net>
|
2008-01-01 Nicolas François <nicolas.francois@centraliens.net>
|
||||||
|
|
||||||
* libmisc/copydir.c, src/usermod.c, lib/prototypes.h: The uid and
|
* libmisc/copydir.c, src/usermod.c, lib/prototypes.h: The uid and
|
||||||
|
@ -1535,7 +1535,10 @@ static void create_mail (void)
|
|||||||
mode_t mode;
|
mode_t mode;
|
||||||
|
|
||||||
if (strcasecmp (create_mail_spool, "yes") == 0) {
|
if (strcasecmp (create_mail_spool, "yes") == 0) {
|
||||||
spool = getdef_str ("MAIL_DIR") ? : "/var/mail";
|
spool = getdef_str ("MAIL_DIR");
|
||||||
|
if (NULL == spool) {
|
||||||
|
spool = "/var/mail";
|
||||||
|
}
|
||||||
file = alloca (strlen (spool) + strlen (user_name) + 2);
|
file = alloca (strlen (spool) + strlen (user_name) + 2);
|
||||||
sprintf (file, "%s/%s", spool, user_name);
|
sprintf (file, "%s/%s", spool, user_name);
|
||||||
fd = open (file, O_CREAT | O_WRONLY | O_TRUNC | O_EXCL, 0);
|
fd = open (file, O_CREAT | O_WRONLY | O_TRUNC | O_EXCL, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user