فهرست منبع

- fixed typo in digest_parser
- updated changelog

Jan Janak 19 سال پیش
والد
کامیت
7b4df94b9d
2فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 4 0
      ChangeLog
  2. 1 1
      parser/digest/digest_parser.c

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+2006-02-28  Jan Janak <[email protected]>
+
+        * digest_parser: Fixed typo ('n' -> '\n'), found by Tomas Mandys
+
 ================================= Release 0.9.6 ==============================
 
 2006-01-11  Jan Janak <[email protected]>

+ 1 - 1
parser/digest/digest_parser.c

@@ -360,7 +360,7 @@ int parse_digest_cred(str* _s, dig_cred_t* _c)
 	if (!strncasecmp(tmp.s, DIGEST_SCHEME, DIG_LEN) &&
 	    ((tmp.s[DIG_LEN] == ' ') ||     /* Test for one of LWS chars */
 	     (tmp.s[DIG_LEN] == '\r') || 
-	     (tmp.s[DIG_LEN] == 'n') || 
+	     (tmp.s[DIG_LEN] == '\n') || 
 	     (tmp.s[DIG_LEN] == '\t') ||
 	     (tmp.s[DIG_LEN] == ','))) {
 		     /* Scheme is Digest */