# HG changeset patch # User Timo Sirainen # Date 1041572180 -7200 # Node ID 68c46e7faf4f1264f9bfeb5f754bed36f5add225 # Parent efe7c015dd78a08ccf04e921ae2aff3a60f91218 s/qop-options/qop/, fixes compatibility problem with Cyrus SASL library. diff -r efe7c015dd78 -r 68c46e7faf4f src/auth/auth-digest-md5.c --- a/src/auth/auth-digest-md5.c Thu Jan 02 15:39:10 2003 +0200 +++ b/src/auth/auth-digest-md5.c Fri Jan 03 07:36:20 2003 +0200 @@ -66,7 +66,7 @@ /* realm="hostname" (multiple allowed) nonce="randomized data, at least 64bit" - qop-options="auth,auth-int,auth-conf" + qop="auth,auth-int,auth-conf" maxbuf=number (with auth-int, auth-conf, defaults to 64k) charset="utf-8" (iso-8859-1 if it doesn't exist) algorithm="md5-sess" @@ -103,7 +103,7 @@ return t_strconcat(str_c(realms), "nonce=\"", auth->nonce, "\",", - "qop-options=\"", str_c(qoplist), "\",", + "qop=\"", str_c(qoplist), "\",", "charset=\"utf-8\",", "algorithm=\"md5-sess\"", NULL);