mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Standardize 2 error messages: start with lowercase letter.
This commit is contained in:
parent
28935658c4
commit
dab342e9ad
1 changed files with 2 additions and 2 deletions
|
|
@ -354,7 +354,7 @@ ncp_li_arg(struct ncp_conn_loginfo *li, int opt, char *arg) {
|
|||
if (gr) {
|
||||
li->group = gr->gr_gid;
|
||||
} else
|
||||
ncp_error("Invalid group name %s, ignored",
|
||||
ncp_error("invalid group name %s, ignored",
|
||||
0, cp);
|
||||
}
|
||||
}
|
||||
|
|
@ -363,7 +363,7 @@ ncp_li_arg(struct ncp_conn_loginfo *li, int opt, char *arg) {
|
|||
if (pw) {
|
||||
li->owner = pw->pw_uid;
|
||||
} else
|
||||
ncp_error("Invalid user name %s, ignored", 0, p);
|
||||
ncp_error("invalid user name %s, ignored", 0, p);
|
||||
}
|
||||
endpwent();
|
||||
free(p);
|
||||
|
|
|
|||
Loading…
Reference in a new issue