~ubuntu-branches/ubuntu/quantal/pam-pkcs11/quantal

« back to all changes in this revision

Viewing changes to src/tools/pklogin_finder.c

  • Committer: Package Import Robot
  • Author(s): Ludovic Rousseau
  • Date: 2012-04-07 19:15:58 UTC
  • mfrom: (2.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20120407191558-79us6gnfhrkc8pf8
Tags: 0.6.8-1
* New upstream release
* Fix "FTBFS: -Werror=format-security" fixed upstream (Closes: #667840)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
14
 * Lesser General Public License for more details.
15
15
 *
16
 
 * $Id: pklogin_finder.c 445 2010-08-14 16:19:36Z ludovic.rousseau $
 
16
 * $Id: pklogin_finder.c 503 2011-10-18 11:50:10Z ludovic.rousseau $
17
17
 */
18
18
 
19
19
#ifdef HAVE_CONFIG_H
128
128
  for (i = 0; i < cert_count; i++) {
129
129
    X509 *x509 = get_X509_certificate(certs[i]);
130
130
    if (x509 != NULL) {
131
 
      DBG1("verifing the certificate #%d", i + 1);
 
131
      DBG1("verifying the certificate #%d", i + 1);
132
132
      /* verify certificate (date, signature, CRL, ...) */
133
133
      rv = verify_certificate(x509,&configuration->policy);
134
134
      if (rv < 0) {