~yolanda.robla/ubuntu/trusty/tomcat7/add_distribution_static_right_author

« back to all changes in this revision

Viewing changes to test/org/apache/catalina/authenticator/TestDigestAuthenticator.java

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-12-06 13:47:08 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20121206134708-xub74b3086g2xwt3
Tags: 7.0.34-0ubuntu1
* New upstream release.
  - d/p/0014-fix-override.patch: Fix FTBFS due to differing dependency
    versions compared to upstream.
* d/p/0015-use-jdbc-pool-default.patch: Make jdbc-pool module the default
  pool implementation for DataSources (LP: #1071817).

Show diffs side-by-side

added added

removed removed

Lines of Context:
342
342
        auth.append(md5response);
343
343
        auth.append("\"");
344
344
        if (qop != null) {
345
 
            auth.append(", qop=\"");
 
345
            auth.append(", qop=");
346
346
            auth.append(qop);
347
 
            auth.append("\"");
 
347
            auth.append("");
348
348
        }
349
349
        if (nc != null) {
350
 
            auth.append(", nc=\"");
 
350
            auth.append(", nc=");
351
351
            auth.append(nc);
352
 
            auth.append("\"");
353
352
        }
354
353
        if (cnonce != null) {
355
354
            auth.append(", cnonce=\"");