CHANGES IN CUPS V1.1.13
+ - The httpMD5Final() function didn't put a colon between
+ the password and nonce strings.
- The pstops filter did not default to Binary data for
"%%BeginData:".
- The pstops filter did not stop processing when a line
/*
- * "$Id: md5passwd.c,v 1.5.2.1 2002/01/02 18:04:29 mike Exp $"
+ * "$Id: md5passwd.c,v 1.5.2.2 2002/01/05 01:30:07 mike Exp $"
*
* MD5 password support for the Common UNIX Printing System (CUPS).
*
* request...
*/
- snprintf(line, sizeof(line), "%s%s:%s", md5, nonce, a2);
+ snprintf(line, sizeof(line), "%s:%s:%s", md5, nonce, a2);
md5_init(&state);
md5_append(&state, (md5_byte_t *)line, strlen(line));
/*
- * End of "$Id: md5passwd.c,v 1.5.2.1 2002/01/02 18:04:29 mike Exp $".
+ * End of "$Id: md5passwd.c,v 1.5.2.2 2002/01/05 01:30:07 mike Exp $".
*/