From 08e864fbe928b6b1316929de8e113229676e241b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 4 Feb 2009 22:06:12 +0000 Subject: [PATCH] spelling git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24590 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/cms.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/hx509/cms.c b/lib/hx509/cms.c index 0bc74bbcd..98f6245dc 100644 --- a/lib/hx509/cms.c +++ b/lib/hx509/cms.c @@ -1431,7 +1431,7 @@ hx509_cms_create_signed(hx509_context context, sigctx.content.length = length; sigctx.eContentType = eContentType; sigctx.peer = peer; - if (flags & HX509_CMS_SIGATURE_ID_NAME) + if (flags & HX509_CMS_SIGNATURE_ID_NAME) sigctx.cmsidflag = CMS_ID_NAME; else sigctx.cmsidflag = CMS_ID_SKI; @@ -1448,9 +1448,9 @@ hx509_cms_create_signed(hx509_context context, der_copy_oid(eContentType, &sigctx.sd.encapContentInfo.eContentType); /** - * Use HX509_CMS_SIGATURE_DETACHED to create detached signatures. + * Use HX509_CMS_SIGNATURE_DETACHED to create detached signatures. */ - if ((flags & HX509_CMS_SIGATURE_DETACHED) == 0) { + if ((flags & HX509_CMS_SIGNATURE_DETACHED) == 0) { ALLOC(sigctx.sd.encapContentInfo.eContent, 1); if (sigctx.sd.encapContentInfo.eContent == NULL) { hx509_clear_error_string(context); @@ -1469,8 +1469,8 @@ hx509_cms_create_signed(hx509_context context, } /** - * Use HX509_CMS_SIGATURE_NO_SIGNER to create no sigInfo (no - * sigatures). + * Use HX509_CMS_SIGNATURE_NO_SIGNER to create no sigInfo (no + * signatures). */ if ((flags & HX509_CMS_SIGATURE_NO_SIGNER) == 0) { ret = hx509_certs_iter(context, certs, sig_process, &sigctx);