diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2010-03-12 07:50:03 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2010-03-12 07:50:03 +0000 |
commit | eeb148cea672ba2f08f7c8959ca5d816ecf94112 (patch) | |
tree | b78b31dba0a95c6373c8ad9119e765983cce7bfc /security/cyrus-sasl2 | |
parent | ff6075356a53382ada1739b1510f660e35af4729 (diff) |
Notes
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/files/patch-plugins-digestmd5.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/security/cyrus-sasl2/files/patch-plugins-digestmd5.c b/security/cyrus-sasl2/files/patch-plugins-digestmd5.c new file mode 100644 index 000000000000..e63375ac490c --- /dev/null +++ b/security/cyrus-sasl2/files/patch-plugins-digestmd5.c @@ -0,0 +1,20 @@ +--- plugins/digestmd5.c.orig 2006-05-17 20:46:17.000000000 +0400 ++++ plugins/digestmd5.c +@@ -2715,7 +2715,7 @@ static sasl_server_plug_t digestmd5_serv + "DIGEST-MD5", /* mech_name */ + #ifdef WITH_RC4 + 128, /* max_ssf */ +-#elif WITH_DES ++#elif defined(WITH_DES) + 112, + #else + 1, +@@ -4034,7 +4034,7 @@ static sasl_client_plug_t digestmd5_clie + "DIGEST-MD5", + #ifdef WITH_RC4 /* mech_name */ + 128, /* max ssf */ +-#elif WITH_DES ++#elif defined(WITH_DES) + 112, + #else + 1, |