Cpp: Handle PINENTRY_LAUNCHED status line

* lang/cpp/src/editinteractor.cpp (EditInteractor::needsNoResponse):
Add GPGME_STATUS_PINENTRY_LAUNCHED.

--
PINENTRY_LAUNCHED needs no response in any Job. This fixes
Jobs which errored out on unknown status lines.
This commit is contained in:
Andre Heinecke 2016-05-06 13:19:18 +02:00
parent 5489532ad6
commit 3fad121677

View File

@ -210,6 +210,7 @@ bool EditInteractor::needsNoResponse(unsigned int status) const
case GPGME_STATUS_USERID_HINT:
case GPGME_STATUS_SIGEXPIRED:
case GPGME_STATUS_KEYEXPIRED:
case GPGME_STATUS_PINENTRY_LAUNCHED:
return true;
default:
return false;