[qemu PATCH] docs: fix missing backslash in certtool shell example

Daniel P. Berrangé posted 1 patch 3 years, 4 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20201127103314.1782200-1-berrange@redhat.com
docs/system/tls.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[qemu PATCH] docs: fix missing backslash in certtool shell example
Posted by Daniel P. Berrangé 3 years, 4 months ago
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 docs/system/tls.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/system/tls.rst b/docs/system/tls.rst
index dc2b94257f..b0973afe1b 100644
--- a/docs/system/tls.rst
+++ b/docs/system/tls.rst
@@ -64,7 +64,7 @@ interactive prompts from certtool::
    cert_signing_key
    EOF
    # certtool --generate-self-signed \
-              --load-privkey ca-key.pem
+              --load-privkey ca-key.pem \
               --template ca.info \
               --outfile ca-cert.pem
 
-- 
2.28.0


Re: [qemu PATCH] docs: fix missing backslash in certtool shell example
Posted by Peter Maydell 3 years, 4 months ago
On Fri, 27 Nov 2020 at 10:34, Daniel P. Berrangé <berrange@redhat.com> wrote:
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
>  docs/system/tls.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/docs/system/tls.rst b/docs/system/tls.rst
> index dc2b94257f..b0973afe1b 100644
> --- a/docs/system/tls.rst
> +++ b/docs/system/tls.rst
> @@ -64,7 +64,7 @@ interactive prompts from certtool::
>     cert_signing_key
>     EOF
>     # certtool --generate-self-signed \
> -              --load-privkey ca-key.pem
> +              --load-privkey ca-key.pem \
>                --template ca.info \
>                --outfile ca-cert.pem
>

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

thanks
-- PMM