mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
indent: Fix spelling
-- These are non-substantive corrections for minor spelling mistakes within the GnuPG codebase. With something like this applied to the codebase, and a judiciously tuned spellchecker integrated as part of a standard test suite, it should be possible to keep a uniform orthography within the project. GnuPG-bug-id: 7116
This commit is contained in:
parent
253a701ed7
commit
42b0e9558a
136 changed files with 233 additions and 233 deletions
|
@ -884,7 +884,7 @@ run_select_statement (ctrl_t ctrl, be_sqlite_local_t ctx,
|
|||
goto leave;
|
||||
}
|
||||
|
||||
/* Check whether we can re-use the current select statement. */
|
||||
/* Check whether we can reuse the current select statement. */
|
||||
if (!ctx->select_stmt)
|
||||
;
|
||||
else if (ctx->select_mode != desc[descidx].mode)
|
||||
|
|
|
@ -207,7 +207,7 @@ be_is_x509_blob (const unsigned char *blob, size_t bloblen)
|
|||
* SEQUENCE SEQUENCE [0] INTEGER INTEGER
|
||||
* (tbs) (version) (s/n)
|
||||
*
|
||||
* Note that v0 certificates don't have an explict version number.
|
||||
* Note that v0 certificates don't have an explicit version number.
|
||||
*/
|
||||
|
||||
p = blob;
|
||||
|
@ -229,7 +229,7 @@ be_is_x509_blob (const unsigned char *blob, size_t bloblen)
|
|||
if (!(class == CLASS_CONTEXT && tag == 0 && cons))
|
||||
{
|
||||
if (class == CLASS_UNIVERSAL && tag == TAG_INTEGER && !cons)
|
||||
return 1; /* Might be a X.509 v0 cert with implict version. */
|
||||
return 1; /* Might be a X.509 v0 cert with implicit version. */
|
||||
return 0; /* No context tag. */
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* frontend.c - Database fronend code for keyboxd
|
||||
/* frontend.c - Database frontend code for keyboxd
|
||||
* Copyright (C) 2019 g10 Code GmbH
|
||||
*
|
||||
* This file is part of GnuPG.
|
||||
|
|
|
@ -93,7 +93,7 @@ struct server_local_s
|
|||
* multi_search_desc_len. If a search description has ever been
|
||||
* allocated the allocated size is stored at multi_search_desc_size.
|
||||
* multi_search_store is allocated at the same size as
|
||||
* multi_search_desc and used to provde backing store for the SN and
|
||||
* multi_search_desc and used to provide backing store for the SN and
|
||||
* NAME elements of KEYBOX_SEARCH_DESC. */
|
||||
KEYBOX_SEARCH_DESC search_desc;
|
||||
KEYBOX_SEARCH_DESC *multi_search_desc;
|
||||
|
|
|
@ -103,7 +103,7 @@ keybox_is_writable (void *token)
|
|||
}
|
||||
|
||||
|
||||
/* Change the default buffering to KBYTES KiB; using 0 uses the syste
|
||||
/* Change the default buffering to KBYTES KiB; using 0 uses the system
|
||||
* buffers. This function must be called early. */
|
||||
void
|
||||
keybox_set_buffersize (unsigned int kbytes, int reserved)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* keybox-search-desc.h - Keybox serch description
|
||||
/* keybox-search-desc.h - Keybox search description
|
||||
* Copyright (C) 2001 Free Software Foundation, Inc.
|
||||
*
|
||||
* This file is part of GnuPG.
|
||||
|
|
|
@ -529,7 +529,7 @@ main (int argc, char **argv )
|
|||
/* Reset the flags. */
|
||||
pargs.flags &= ~(ARGPARSE_FLAG_KEEP | ARGPARSE_FLAG_NOVERSION);
|
||||
|
||||
/* The configuraton directories for use by gpgrt_argparser. */
|
||||
/* The configuration directories for use by gpgrt_argparser. */
|
||||
gpgrt_set_confdir (GPGRT_CONFDIR_SYS, gnupg_sysconfdir ());
|
||||
gpgrt_set_confdir (GPGRT_CONFDIR_USER, gnupg_homedir ());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue