From 6619ead2cfd2abcb95b66dc70622fdeef624fb8a Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Wed, 8 Apr 2015 15:58:16 +0200 Subject: sm: Fix certificate lookup in dirmngr cache. * sm/call-dirmngr.c (get_cached_cert): Fix typo in LOOKUP command. -- This bug has been here since the code was written. The commit message for commit 2d0ca28a226773b9779a93c39bba9bace13232fe actually had the warning that the code has not been tested. Now the funny thing is that when the code was backported to the 2.0 branch just a few minutes later that typo was fixed en passant in that branch. --- sm/call-dirmngr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sm/call-dirmngr.c b/sm/call-dirmngr.c index 560ea7208..8e4841bf9 100644 --- a/sm/call-dirmngr.c +++ b/sm/call-dirmngr.c @@ -823,7 +823,7 @@ get_cached_cert (assuan_context_t ctx, *r_cert = NULL; bin2hex (fpr, 20, hexfpr); - snprintf (line, DIM(line)-1, "LOOKUP --signle --cache-only 0x%s", hexfpr); + snprintf (line, DIM(line)-1, "LOOKUP --single --cache-only 0x%s", hexfpr); init_membuf (&mb, 4096); err = assuan_transact (ctx, line, get_cached_cert_data_cb, &mb, -- cgit v1.2.3