summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/appl/user_user/ChangeLog5
-rw-r--r--src/appl/user_user/client.c12
2 files changed, 7 insertions, 10 deletions
diff --git a/src/appl/user_user/ChangeLog b/src/appl/user_user/ChangeLog
index 9c79fbfa2..b5e48d6e7 100644
--- a/src/appl/user_user/ChangeLog
+++ b/src/appl/user_user/ChangeLog
@@ -1,4 +1,9 @@
+Mon May 01 15:56:32 1995 Chris Provenzano (proven@mit.edu)
+
+ * client.c (main()): Changes to auth_context to better
+ support full addresses, for mk_safe() and friends.
+
Wed Apr 26 22:12:26 1995 Chris Provenzano (proven@mit.edu)
* server.c, client.c : Use krb5_auth_con_genaddrs() instead of
diff --git a/src/appl/user_user/client.c b/src/appl/user_user/client.c
index 4679fbf1d..2a95c5e17 100644
--- a/src/appl/user_user/client.c
+++ b/src/appl/user_user/client.c
@@ -212,8 +212,8 @@ char *argv[];
}
if (retval = krb5_auth_con_genaddrs(context, auth_context, s,
- KRB5_AUTH_CONTEXT_GENERATE_LOCAL_ADDR |
- KRB5_AUTH_CONTEXT_GENERATE_REMOTE_ADDR)) {
+ KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR |
+ KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR)) {
com_err("uu-client", retval, "generating addrs for auth_context");
return 9;
}
@@ -240,14 +240,6 @@ char *argv[];
0, /* server */, NULL, 0, NULL, &ticket);
#endif
-/* XXX This will be removed -- proven */
- if (retval = krb5_auth_con_genaddrs(context, auth_context, s,
- KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR |
- KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR)) {
- com_err("uu-client", retval, "generating addrs for auth_context");
- return 9;
- }
-
if (retval) {
com_err("uu-client", retval, "reading AP_REQ from server");
return 9;