diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2001-12-19 13:17:00 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2001-12-19 13:17:00 +0000 |
commit | 81d821cd5819aef7d3ea68c30b5d4d18e806faf1 (patch) | |
tree | 76c3c2dec862a0cb12efa326daf80d28b3f7cc90 /lib/auth_srp.h | |
parent | 3bc76b218eae9adc7bb235c7aabeb4b0fb0fecac (diff) | |
download | gnutls-81d821cd5819aef7d3ea68c30b5d4d18e806faf1.tar.gz |
some cleanups. *_CREDENTIALS renamed to GNUTLS_*_CREDENTIALS.
Added defines to keep source compatibility.
Diffstat (limited to 'lib/auth_srp.h')
-rw-r--r-- | lib/auth_srp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/auth_srp.h b/lib/auth_srp.h index 9b75981c42..04bb48cc6f 100644 --- a/lib/auth_srp.h +++ b/lib/auth_srp.h @@ -5,14 +5,14 @@ typedef struct { char* password; } SRP_CLIENT_CREDENTIALS_INT; -#define SRP_CLIENT_CREDENTIALS SRP_CLIENT_CREDENTIALS_INT* +#define GNUTLS_SRP_CLIENT_CREDENTIALS SRP_CLIENT_CREDENTIALS_INT* typedef struct { char* password_file; char* password_conf_file; } SRP_SERVER_CREDENTIALS_INT; -#define SRP_SERVER_CREDENTIALS SRP_SERVER_CREDENTIALS_INT* +#define GNUTLS_SRP_SERVER_CREDENTIALS SRP_SERVER_CREDENTIALS_INT* /* these structures should not use allocated data */ typedef struct SRP_SERVER_AUTH_INFO_INT { |