Displaying 1 result from an estimated 1 matches for "_path_mem".
Did you mean:
_path_dev
2001 Jan 19
0
sshd crashes (w/ skey)
...quot;blah") at auth1.c:279
#10 0x804ef77 in do_authentication () at auth1.c:473
#11 0x804dc4a in main (ac=2, av=0xbffffa3c) at sshd.c:1088
(gdb)
I might be talking complete BS, but I think that problem lies somewhere among these lines:
-- auth-skey.c - skey_fake_keyinfo() --
} else if (!stat(_PATH_MEM, &sb) || !stat("/", &sb)) {
t = sb.st_ctime;
secret = ctime(&t);
secretlen = strlen(secret);
flg = 0;
}
-- cut--
I have tried adding various debug() messages in the auth-skey.c file, and what was VERY funny is that sshd would 'randomly' stop crashing if I put
debu...