diff options
author | Mitchell Riedstra <mitch@riedstra.dev> | 2021-08-31 18:24:12 -0400 |
---|---|---|
committer | Mitchell Riedstra <mitch@riedstra.dev> | 2021-08-31 18:24:12 -0400 |
commit | 76abb1451f3df749a79ea3f4f5be3bda717bb484 (patch) | |
tree | 450e7f6eb170204f0fbbaa74df462e315719731d /pinentry/password-cache.h | |
parent | a77bb7a194060b4174bb51e9ad9619c9d9d0a787 (diff) |
Bring pinentry into sync with current GPG git
Diffstat (limited to 'pinentry/password-cache.h')
-rw-r--r-- | pinentry/password-cache.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pinentry/password-cache.h b/pinentry/password-cache.h index 0bc8788..d7ccfee 100644 --- a/pinentry/password-cache.h +++ b/pinentry/password-cache.h @@ -14,7 +14,8 @@ General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see <http://www.gnu.org/licenses/>. + along with this program; if not, see <https://www.gnu.org/licenses/>. + SPDX-License-Identifier: GPL-2.0+ */ #ifndef PASSWORD_CACHE_H @@ -22,7 +23,7 @@ void password_cache_save (const char *key_grip, const char *password); -char *password_cache_lookup (const char *key_grip); +char *password_cache_lookup (const char *key_grip, int *fatal_error); int password_cache_clear (const char *keygrip); |