summaryrefslogtreecommitdiff
path: root/source3/web
diff options
context:
space:
mode:
authorJura Sasek <jiri.sasek@oracle.com>2012-07-24 20:58:58 +0200
committerKarolin Seeger <kseeger@samba.org>2012-07-24 21:34:52 +0200
commit5261386ca38dd87334deafc306d28651a7ca27af (patch)
tree9b66fe8cdb78f2ed4db4ae6609abfac75b427879 /source3/web
parentf79cee20461b5599419fe022abee009c3aef5290 (diff)
downloadsamba-5261386ca38dd87334deafc306d28651a7ca27af.tar.gz
Fix bug #9037 - Name clash in MD5 cause...
... the "net ads join" fails on T4 (sun4v) systems on Solaris 10. (cherry picked from commit c6673d9d2161ff1d8491f6cbc0b6ea0be03cdf4d)
Diffstat (limited to 'source3/web')
-rw-r--r--source3/web/swat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c
index e7c0378697a..1f6eb6c4d42 100644
--- a/source3/web/swat.c
+++ b/source3/web/swat.c
@@ -151,7 +151,7 @@ static char *make_parm_name(const char *label)
void get_xsrf_token(const char *username, const char *pass,
const char *formname, time_t xsrf_time, char token_str[33])
{
- struct MD5Context md5_ctx;
+ MD5_CTX md5_ctx;
uint8_t token[16];
int i;