aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/x509.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/x509.cpp')
-rw-r--r--src/cli/x509.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/x509.cpp b/src/cli/x509.cpp
index f5691b8d5..64e66366e 100644
--- a/src/cli/x509.cpp
+++ b/src/cli/x509.cpp
@@ -67,9 +67,9 @@ class Trust_Root_Info final : public Command
output() << "# " << dn << "\n";
if(flag_set("display"))
- output() << cert->to_string() << "\n";
+ output() << cert.to_string() << "\n";
- output() << cert->PEM_encode() << "\n";
+ output() << cert.PEM_encode() << "\n";
}
}