summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2000-10-24 00:15:17 +0000
committerTom Yu <tlyu@mit.edu>2000-10-24 00:15:17 +0000
commit712fb90fb84d321efb96144b7c7db4b648b743e3 (patch)
tree7471fb5f20d1437426780b7b15e94a19f9d3314b
parentb41676d033968d1039a74dc24a432e6e1d641c5b (diff)
downloadkrb5-712fb90fb84d321efb96144b7c7db4b648b743e3.tar.gz
krb5-712fb90fb84d321efb96144b7c7db4b648b743e3.tar.xz
krb5-712fb90fb84d321efb96144b7c7db4b648b743e3.zip
* 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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12807 dc483132-0cff-0310-8789-dd5450dbe970
-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