From 712fb90fb84d321efb96144b7c7db4b648b743e3 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Tue, 24 Oct 2000 00:15:17 +0000 Subject: * 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 --- src/appl/gssftp/ftp/ChangeLog | 6 ++++++ src/appl/gssftp/ftp/secure.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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 + + * 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 * 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 #define CRED_DECL extern CREDENTIALS cred; -#define SESSION cred.session +#define SESSION &cred.session #define myaddr data_addr #define hisaddr hisdataaddr -- cgit