aboutsummaryrefslogtreecommitdiff
path: root/src/windows
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows')
-rw-r--r--src/windows/gss/ChangeLog5
-rw-r--r--src/windows/gss/gss-client.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/windows/gss/ChangeLog b/src/windows/gss/ChangeLog
index 194527c..5681c50 100644
--- a/src/windows/gss/ChangeLog
+++ b/src/windows/gss/ChangeLog
@@ -1,3 +1,8 @@
+Tue Oct 29 10:17:25 1996 Theodore Y. Ts'o <tytso@mit.edu>
+
+ * gss-client.c (client_establish_context): Fix typo; service_name
+ really should be nt_service_name.
+
Thu Jul 25 02:16:56 1996 Theodore Y. Ts'o <tytso@mit.edu>
* gss-client.c (client_establish_context): Remove OID's that
diff --git a/src/windows/gss/gss-client.c b/src/windows/gss/gss-client.c
index b808306..0a98774 100644
--- a/src/windows/gss/gss-client.c
+++ b/src/windows/gss/gss-client.c
@@ -220,7 +220,7 @@ client_establish_context (int s, char *sname, char *oid_name,
send_tok.value = sname;
send_tok.length = strlen(sname) + 1;
maj_stat = gss_import_name(&min_stat, &send_tok,
- (gss_OID) service_name, &target_name);
+ (gss_OID) nt_service_name, &target_name);
if (maj_stat != GSS_S_COMPLETE) {
display_status("parsing name", maj_stat, min_stat);
return -1;