diff options
| author | Tom Yu <tlyu@mit.edu> | 2000-10-24 00:15:17 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2000-10-24 00:15:17 +0000 |
| commit | 712fb90fb84d321efb96144b7c7db4b648b743e3 (patch) | |
| tree | 7471fb5f20d1437426780b7b15e94a19f9d3314b /src | |
| parent | b41676d033968d1039a74dc24a432e6e1d641c5b (diff) | |
* 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/gssftp/ftp/ChangeLog | 6 | ||||
| -rw-r--r-- | src/appl/gssftp/ftp/secure.h | 2 |
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 |
