From e5edf78d84a836525498eb85f20dff84659af65f Mon Sep 17 00:00:00 2001 From: Fraser Tweedale Date: Aug 18 2017 03:04:46 +0000 Subject: getcert start-tracking: use issuer option when specified The --issuer / -X option is defined for `getcert start-tracking` but it does not get processed. Use the option when specified. --- diff --git a/src/getcert.c b/src/getcert.c index 36edeb6..e39a173 100644 --- a/src/getcert.c +++ b/src/getcert.c @@ -1971,6 +1971,9 @@ set_tracking(const char *argv0, const char *category, case 'T': profile = talloc_strdup(globals.tctx, poptarg); break; + case 'X': + issuer = talloc_strdup(globals.tctx, poptarg); + break; case 'i': id = talloc_strdup(globals.tctx, poptarg); break;