Date: | Mon, 30 Apr 2007 13:39:31 -0700 (PDT) |
From: | Brian Kantor <brian@karoshi.ucsd.edu> |
To: | krb5-bugs@mit.edu |
Subject: | minor incompatability krb5-1.6.1 and OpenSSH_4.6p1, OpenSSL 0.9.8e |
FreeBSD-6.1-Release, OpenSSH_4.6p1, OpenSSL 0.9.8e, krb5-1.6.1, the
sshd daemon drops core during attempted password login.
This appears to be the result of a null 'opt' pointer being passed
to subroutine 'krb5int_gic_opt_to_opte' at line 235 in lib/krb5/krb/gic_opt.c
A workaround is to apply this patch:
diff -r krb5-1.6.1-dist/src/lib/krb5/krb/gic_opt.c krb5-1.6.1/src/lib/krb5/krb/gic_opt.c
234a235,236
which is arguably not the correct solution but allows me to continue work.
- Brian
sshd daemon drops core during attempted password login.
This appears to be the result of a null 'opt' pointer being passed
to subroutine 'krb5int_gic_opt_to_opte' at line 235 in lib/krb5/krb/gic_opt.c
A workaround is to apply this patch:
diff -r krb5-1.6.1-dist/src/lib/krb5/krb/gic_opt.c krb5-1.6.1/src/lib/krb5/krb/gic_opt.c
234a235,236
Show quoted text
> if (!opt)
> return 0;
> return 0;
which is arguably not the correct solution but allows me to continue work.
- Brian