https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204185
--- Comment #6 from John W. O'Brien <[email protected]> --- Something changed from 1.1.1 to 1.2.2 to break (at least) the following. % pkg info -x kerberos py27-kerberos-1.1.1_1 % sudo python -c " import kerberos result, ctx = kerberos.authGSSServerInit('HTTP') print(result==kerberos.AUTH_GSS_COMPLETE) " True vs. % pkg info -x kerberos py27-kerberos-1.2.2 % sudo python -c " import kerberos result, ctx = kerberos.authGSSServerInit('HTTP') print(result==kerberos.AUTH_GSS_COMPLETE) " Traceback (most recent call last): File "<string>", line 3, in <module> kerberos.GSSError: (('Unspecified GSS failure. Minor code may provide more information', 851968), ('No Kerberos credentials available', -1765328243)) I've done a little bit of digging, and I suspect a change to the way that kerberosgss.c:authenticate_gss_server_init() calls gss_acquire_cred(), but I don't yet have proof. The point is that we may wish to defer this update. -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "[email protected]"
