From 2c077fba4ea58b5eb0d5995ccaf3da9a5f071d4d Mon Sep 17 00:00:00 2001 From: Fredrik Thulin Date: Fri, 10 Feb 2012 14:13:24 +0100 Subject: [PATCH] DBG format fix --- pam_yubico.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pam_yubico.c b/pam_yubico.c index 5278be5..9766afc 100644 --- a/pam_yubico.c +++ b/pam_yubico.c @@ -878,7 +878,7 @@ pam_sm_authenticate (pam_handle_t * pamh, goto done; } - DBG (("conv returned %l bytes", (unsigned long) strlen(resp->resp))); + DBG (("conv returned %lu bytes", (unsigned long) strlen(resp->resp))); password = resp->resp; }