diff options
author | Werner Koch <[email protected]> | 2020-01-03 10:43:55 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2020-01-03 10:43:55 +0000 |
commit | c0625c15c1fb6d06202669eb8caff2710377952d (patch) | |
tree | ee066f3d1cf4fcca2c466b4b9373241f97a25cf3 /g10/skclist.c | |
parent | kbx: Initial support for an SQLite backend (diff) | |
download | gnupg-c0625c15c1fb6d06202669eb8caff2710377952d.tar.gz gnupg-c0625c15c1fb6d06202669eb8caff2710377952d.zip |
scd: Minor fix for readibility.
* scd/command.c (open_card_with_request): Use NULL instead of
APPTYPE_NULL.
--
Using the enum is wrong because a string is expected. However it did
harm anything because the value of the enum is 0 and thus equivalent
to NULL.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/skclist.c')
-rw-r--r-- | g10/skclist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/skclist.c b/g10/skclist.c index c13566e2b..469591cc4 100644 --- a/g10/skclist.c +++ b/g10/skclist.c @@ -293,7 +293,7 @@ build_sk_list (ctrl_t ctrl, * --default-key and --try-secret-key). Use the following procedure: * * 1) Initialize a void pointer to NULL - * 2) Pass a reference to this pointer to this function (content) + * 2) Pass a reference to this pointer to this function (context) * and provide space for the secret key (sk) * 3) Call this function as long as it does not return an error (or * until you are done). The error code GPG_ERR_EOF indicates the |