|
@@ -300,7 +300,8 @@ int parse_digest_cred(str* _s, dig_cred_t* _c)
|
|
|
((tmp.s[DIG_LEN] == ' ') || /* Test for one of LWS chars */
|
|
|
(tmp.s[DIG_LEN] == '\r') ||
|
|
|
(tmp.s[DIG_LEN] == 'n') ||
|
|
|
- (tmp.s[DIG_LEN] == '\t'))) {
|
|
|
+ (tmp.s[DIG_LEN] == '\t') ||
|
|
|
+ (tmp.s[DIG_LEN] == ','))) {
|
|
|
/* Scheme is Digest */
|
|
|
tmp.s += DIG_LEN + 1;
|
|
|
tmp.len -= DIG_LEN + 1;
|