By default Kerberos obtains addressless tickets.
ticket: new
Tags: enhancement
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15150
dc483132-0cff-0310-8789-
dd5450dbe970
+2003-02-04 Sam Hartman <hartmans@mit.edu>
+
+ * get_in_tkt.c (krb5_get_init_creds): Default to addressless tickets
+
2003-01-12 Ezra Peisach <epeisach@bu.edu>
* send_tgs.c (krb5_send_tgs): Free memory leak of TGS_REQ.
/* it would be nice if this parsed out an address list, but
that would be work. */
else if (((ret = krb5_libdefault_boolean(context, &client->realm,
- "noaddresses", &tempint)) == 0)
- && tempint) {
+ "noaddresses", &tempint)) != 0)
+ || (tempint == 0)) {
;
} else {
if ((ret = krb5_os_localaddr(context, &request.addresses)))