1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Clean up word replication.

--

This fixes extra word repetitions (like "the the" or "is is") in the
code and docs.

Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
This commit is contained in:
Yuri Chornoivan 2017-02-20 16:19:50 -05:00 committed by Daniel Kahn Gillmor
parent 831d014550
commit 24cf0606b4
95 changed files with 136 additions and 136 deletions

View file

@ -187,7 +187,7 @@ static assuan_context_t start_agent (void);
/* Print usage information and and provide strings for help. */
/* Print usage information and provide strings for help. */
static const char *
my_strusage( int level )
{

View file

@ -129,7 +129,7 @@ static gpg_error_t command_receive_cb (void *opaque,
/* Print usage information and and provide strings for help. */
/* Print usage information and provide strings for help. */
static const char *
my_strusage( int level )
{

View file

@ -133,7 +133,7 @@ static gpg_error_t command_cron (void);
/* Print usage information and and provide strings for help. */
/* Print usage information and provide strings for help. */
static const char *
my_strusage( int level )
{
@ -1105,7 +1105,7 @@ process_new_key (server_ctx_t ctx, estream_t key)
if (policybuf.auth_submit)
{
/* Bypass the confirmation stuff and publish the the key as is. */
/* Bypass the confirmation stuff and publish the key as is. */
log_info ("publishing address '%s'\n", sl->d);
/* FIXME: We need to make sure that we do this only for the
* address in the mail. */
@ -1525,7 +1525,7 @@ command_receive_cb (void *opaque, const char *mediatype,
/* Return a list of all configured domains. ECh list element is the
* top directory for for the domain. To figure out the actual domain
* top directory for the domain. To figure out the actual domain
* name strrchr(name, '/') can be used. */
static gpg_error_t
get_domain_list (strlist_t *r_list)

View file

@ -109,7 +109,7 @@ static ARGPARSE_OPTS opts[] =
};
/* Print usage information and and provide strings for help. */
/* Print usage information and provide strings for help. */
static const char *
my_strusage( int level )
{

View file

@ -137,7 +137,7 @@ static ARGPARSE_OPTS tar_opts[] = {
/* Print usage information and and provide strings for help. */
/* Print usage information and provide strings for help. */
static const char *
my_strusage( int level )
{
@ -507,7 +507,7 @@ main (int argc, char **argv)
/* Read the next record from STREAM. RECORD is a buffer provided by
the caller and must be at leadt of size RECORDSIZE. The function
return 0 on success and and error code on failure; a diagnostic
return 0 on success and error code on failure; a diagnostic
printed as well. Note that there is no need for an EOF indicator
because a tarball has an explicit EOF record. */
gpg_error_t

View file

@ -41,7 +41,7 @@ if [ -z "$signedby" ]; then
fi
if [ "$dryrun" = "0" ]; then
echo "About to send the the keys signed by $signedby" >&2
echo "About to send the keys signed by $signedby" >&2
echo -n "to their owners. Do you really want to do this? (y/N)" >&2
read
[ "$REPLY" != "y" -a "$REPLY" != "Y" ] && exit 0

View file

@ -191,7 +191,7 @@ struct
} opt;
/* Print usage information and and provide strings for help. */
/* Print usage information and provide strings for help. */
static const char *
my_strusage (int level)
{
@ -997,7 +997,7 @@ main (int argc, char **argv)
setup_libgcrypt_logging ();
gcry_control (GCRYCTL_INIT_SECMEM, 16384, 0);
/* Tell simple-pwquery about the the standard socket name. */
/* Tell simple-pwquery about the standard socket name. */
{
char *tmp = make_filename (gnupg_socketdir (), GPG_AGENT_SOCK_NAME, NULL);
simple_pw_set_socket (tmp);