Message ID | 20200219131731.46087-1-tianjia.zhang@linux.alibaba.com |
---|---|
State | New |
Headers | show |
Series | X.509: fix debugging information without newline tag | expand |
diff --git a/crypto/asymmetric_keys/x509_public_key.c b/crypto/asymmetric_keys/x509_public_key.c index feccec08b244..4553619ea01d 100644 --- a/crypto/asymmetric_keys/x509_public_key.c +++ b/crypto/asymmetric_keys/x509_public_key.c @@ -140,7 +140,7 @@ int x509_check_for_self_signed(struct x509_certificate *cert) goto out; } - pr_devel("Cert Self-signature verified"); + pr_devel("Cert Self-signature verified\n"); cert->self_signed = true; out:
Added missing newline tag to this line of pr_devel debug information. Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com> --- crypto/asymmetric_keys/x509_public_key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)