You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
878 B
29 lines
878 B
1 year ago
|
From e5ffbe2736f4ad4370fb44c216ecd6092a01003c Mon Sep 17 00:00:00 2001
|
||
|
From: Jerry Snitselaar <jsnitsel@redhat.com>
|
||
|
Date: Thu, 21 Jun 2018 13:00:51 -0700
|
||
|
Subject: [PATCH] certifycreation: Check that creation hash file name received
|
||
|
|
||
|
Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com>
|
||
|
---
|
||
|
utils/certifycreation.c | 4 ++++
|
||
|
1 file changed, 4 insertions(+)
|
||
|
|
||
|
diff --git a/utils/certifycreation.c b/utils/certifycreation.c
|
||
|
index 50e3718..4a6cd0a 100644
|
||
|
--- a/utils/certifycreation.c
|
||
|
+++ b/utils/certifycreation.c
|
||
|
@@ -298,6 +298,10 @@ int main(int argc, char *argv[])
|
||
|
printf("Missing ticket parameter -tk\n");
|
||
|
printUsage();
|
||
|
}
|
||
|
+ if (creationHashFilename == NULL) {
|
||
|
+ printf("Missing creation hash file parameter -ch\n");
|
||
|
+ printUsage();
|
||
|
+ }
|
||
|
if (rc == 0) {
|
||
|
/* Handle of key that will perform certifying */
|
||
|
in.objectHandle = objectHandle;
|
||
|
--
|
||
|
2.17.0
|
||
|
|