diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2022-04-18 19:01:14 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2022-04-18 19:01:14 +0200 |
commit | dc4e993b3d5223d758eeb72fac1424da492b58c2 (patch) | |
tree | 204f53b8dc83b42b27f976bfef4d7a23f085f628 /pinentry/password-cache.h | |
parent | a4f7d150c7395faf72fb167ac333170668124866 (diff) | |
parent | b514b660285b66ee1a2d72c4838f647332e4a0cc (diff) |
Merge branch 'master' of core-a:/mnt/repos/public/pinentry-dmenu
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); |