aboutsummaryrefslogtreecommitdiffstats
path: root/sm
diff options
context:
space:
mode:
Diffstat (limited to 'sm')
-rw-r--r--sm/base64.c2
-rw-r--r--sm/call-agent.c2
-rw-r--r--sm/certcheck.c4
-rw-r--r--sm/decrypt.c2
-rw-r--r--sm/gpgsm.c4
5 files changed, 5 insertions, 9 deletions
diff --git a/sm/base64.c b/sm/base64.c
index e7a1ae9ae..f70615e97 100644
--- a/sm/base64.c
+++ b/sm/base64.c
@@ -178,7 +178,7 @@ base64_reader_cb (void *cb_value, char *buffer, size_t count, size_t *nread)
if (c == '\n')
{
parm->have_lf = 1;
- /* FIXME: we need to skip overlong lines while detecting
+ /* Fixme: we need to skip overlong lines while detecting
the dashed lines */
break;
}
diff --git a/sm/call-agent.c b/sm/call-agent.c
index 7065ab872..a7e7a315b 100644
--- a/sm/call-agent.c
+++ b/sm/call-agent.c
@@ -553,7 +553,7 @@ learn_cb (void *opaque, const void *buffer, size_t length)
}
- /* FIXME: this shoudl go inot import.c */
+ /* FIXME: this should go into import.c */
cert = ksba_cert_new ();
if (!cert)
{
diff --git a/sm/certcheck.c b/sm/certcheck.c
index 07f2d3509..612a3d2d6 100644
--- a/sm/certcheck.c
+++ b/sm/certcheck.c
@@ -256,10 +256,6 @@ gpgsm_create_cms_signature (KsbaCert cert, GCRY_MD_HD md, int mdalgo,
gcry_md_get_algo_dlen (mdalgo), mdalgo,
r_sigval, &siglen);
xfree (grip);
- /* FIXME: we should check that the returned S-Exp is valid fits int
- siglen. It ould probably be a good idea to scan and print it
- again to make this sure and be sure that we have canoncical
- encoding */
return rc;
}
diff --git a/sm/decrypt.c b/sm/decrypt.c
index c9da00255..4e513a28b 100644
--- a/sm/decrypt.c
+++ b/sm/decrypt.c
@@ -82,7 +82,7 @@ prepare_decryption (const char *hexkeygrip, KsbaConstSexp enc_val,
/* FIXME: Actually the leading zero is required but due to the way
we encode the output in libgcrypt as an MPI we are not able to
encode that leading zero. However, when using a Smartcard we are
- doing it the rightway and therefore we have skip the zero. This
+ doing it the rightway and therefore we have to skip the zero. This
should be fixed in gpg-agent of course. */
if (!seskey[n])
n++;
diff --git a/sm/gpgsm.c b/sm/gpgsm.c
index 142e170a2..f0fa98fc7 100644
--- a/sm/gpgsm.c
+++ b/sm/gpgsm.c
@@ -580,7 +580,7 @@ main ( int argc, char **argv)
struct server_control_s ctrl;
CERTLIST recplist = NULL;
- /* fixme: trap_unaligned ();*/
+ /* trap_unaligned ();*/
set_strusage (my_strusage);
gcry_control (GCRYCTL_SUSPEND_SECMEM_WARN);
/* Please note that we may running SUID(ROOT), so be very CAREFUL
@@ -1048,7 +1048,7 @@ main ( int argc, char **argv)
case aSign: /* sign the given file */
/* FIXME: we can only do detached sigs for now and we don't
handle --output yet. We should also allow to concatenate
- multiple files for signins because that is what gpg does.*/
+ multiple files for signing because that is what gpg does.*/
if (!argc)
gpgsm_sign (&ctrl, 0, 1, stdout); /* create from stdin */
else if (argc == 1)