summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/appl/gssftp/ftp/ChangeLog6
-rw-r--r--src/appl/gssftp/ftp/secure.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/appl/gssftp/ftp/ChangeLog b/src/appl/gssftp/ftp/ChangeLog
index 196af537a..7b84be3b8 100644
--- a/src/appl/gssftp/ftp/ChangeLog
+++ b/src/appl/gssftp/ftp/ChangeLog
@@ -1,3 +1,9 @@
+2000-10-23 Tom Yu <tlyu@mit.edu>
+
+ * secure.h: Change SESSION to refer to &cred.session instead, so
+ as to have the correct pointer type when passed to
+ {mk,rd}_{safe,priv}() functions.
+
Tue Oct 10 05:01:21 2000 Ezra Peisach <epeisach@mit.edu>
* ftp.c (do_auth): Remove debugging printf which I inadvertantly
diff --git a/src/appl/gssftp/ftp/secure.h b/src/appl/gssftp/ftp/secure.h
index cb271fcfa..0efb612d1 100644
--- a/src/appl/gssftp/ftp/secure.h
+++ b/src/appl/gssftp/ftp/secure.h
@@ -1,7 +1,7 @@
#include <stdio.h>
#define CRED_DECL extern CREDENTIALS cred;
-#define SESSION cred.session
+#define SESSION &cred.session
#define myaddr data_addr
#define hisaddr hisdataaddr