changeset 895:68c46e7faf4f HEAD

s/qop-options/qop/, fixes compatibility problem with Cyrus SASL library.
author Timo Sirainen <tss@iki.fi>
date Fri, 03 Jan 2003 07:36:20 +0200
parents efe7c015dd78
children 21ffcce83c70
files src/auth/auth-digest-md5.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);