Fix additional const issues.
This commit is contained in:
parent
791ebc58dd
commit
c56d59c90b
@ -13,9 +13,10 @@
|
||||
|
||||
* libmisc/console.c, libmisc/motd.c, libmisc/setupenv.c,
|
||||
libmisc/sulog.c, libmisc/hushed.c, libmisc/failure.c,
|
||||
libmisc/loginprompt.c, libmisc/ttytype.c,
|
||||
libmisc/loginprompt.c, libmisc/ttytype.c, libmisc/obscure.c,
|
||||
libmisc/pam_pass_non_interractive.c, src/userdel.c, src/login.c,
|
||||
lib/commonio.c, lib/commonio.h: Fix some const issues.
|
||||
lib/commonio.c, lib/commonio.h, libmisc/setugid.c,
|
||||
libmisc/setupenv.c: Fix some const issues.
|
||||
* libmisc/motd.c: Avoid multi-statements lines.
|
||||
* libmisc/motd.c: Support long MOTD_FILE.
|
||||
* libmisc/list.c, lib/prototypes.h: Revert previous change.
|
||||
|
@ -226,7 +226,7 @@ static const char *obscure_msg (const char *old, const char *new,
|
||||
size_t maxlen, oldlen, newlen;
|
||||
char *new1, *old1;
|
||||
const char *msg;
|
||||
char *result;
|
||||
const char *result;
|
||||
|
||||
oldlen = strlen (old);
|
||||
newlen = strlen (new);
|
||||
|
@ -131,7 +131,7 @@ int setup_uid_gid (const struct passwd *info)
|
||||
|
||||
#if defined (HAVE_INITGROUPS) && ! defined (USE_PAM)
|
||||
if (is_console) {
|
||||
char *cp = getdef_str ("CONSOLE_GROUPS");
|
||||
const char *cp = getdef_str ("CONSOLE_GROUPS");
|
||||
|
||||
if ((NULL != cp) && (add_groups (cp) != 0)) {
|
||||
perror ("Warning: add_groups");
|
||||
|
@ -200,7 +200,7 @@ static void read_env_file (const char *filename)
|
||||
void setup_env (struct passwd *info)
|
||||
{
|
||||
#ifndef USE_PAM
|
||||
char *envf;
|
||||
const char *envf;
|
||||
#endif
|
||||
const char *cp;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user