mirror of
https://github.com/clearml/dropbear
synced 2025-04-05 13:15:06 +00:00
merge of '295b11312e327fe6c4f33512674ea4a1a9790344'
and '426d7aeea950d007ed7ef9f03f9f40b138a769cb' --HG-- extra : convert_revision : d9cc9067a1a17f312a7349781f2dbbaf2890d5a6
This commit is contained in:
commit
a3b5d3c8b3
@ -798,11 +798,11 @@ static int ptycommand(struct Channel *channel, struct ChanSess *chansess) {
|
||||
if (svr_opts.domotd) {
|
||||
/* don't show the motd if ~/.hushlogin exists */
|
||||
|
||||
/* 11 == strlen("/hushlogin\0") */
|
||||
len = strlen(ses.authstate.pw_dir) + 11;
|
||||
/* 12 == strlen("/.hushlogin\0") */
|
||||
len = strlen(ses.authstate.pw->pw_dir) + 12;
|
||||
|
||||
hushpath = m_malloc(len);
|
||||
snprintf(hushpath, len, "%s/hushlogin", ses.authstate.pw_dir);
|
||||
snprintf(hushpath, len, "%s/.hushlogin", ses.authstate.pw->pw_dir);
|
||||
|
||||
if (stat(hushpath, &sb) < 0) {
|
||||
/* more than a screenful is stupid IMHO */
|
||||
|
Loading…
Reference in New Issue
Block a user