summaryrefslogtreecommitdiff
path: root/utils/nwztools/upgtools/upgtool.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/nwztools/upgtools/upgtool.c')
-rw-r--r--utils/nwztools/upgtools/upgtool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/nwztools/upgtools/upgtool.c b/utils/nwztools/upgtools/upgtool.c
index 8f75f93024..833321ec12 100644
--- a/utils/nwztools/upgtools/upgtool.c
+++ b/utils/nwztools/upgtools/upgtool.c
@@ -319,7 +319,7 @@ static int get_key_and_sig(bool is_extract, void *encrypted_hdr)
319 cprintf(GREY, "- select a model with a known KAS\n"); 319 cprintf(GREY, "- select a model with a known KAS\n");
320 cprintf(GREY, "- specify an explicit KAS or key+sig\n"); 320 cprintf(GREY, "- specify an explicit KAS or key+sig\n");
321 if(is_extract) 321 if(is_extract)
322 cprintf(GREY, "- let me try to find the keysig(slow !)\n"); 322 cprintf(GREY, "- let me try to find the keysig by brute force\n");
323 return 1; 323 return 1;
324 } 324 }
325 325
@@ -604,7 +604,7 @@ static void usage(void)
604 printf(" -c/--create\t\tCreate a UPG archive\n"); 604 printf(" -c/--create\t\tCreate a UPG archive\n");
605 printf("keysig search method:\n"); 605 printf("keysig search method:\n");
606 for(int i = KEYSIG_SEARCH_FIRST; i < KEYSIG_SEARCH_LAST; i++) 606 for(int i = KEYSIG_SEARCH_FIRST; i < KEYSIG_SEARCH_LAST; i++)
607 printf(" %s\t%s\n", keysig_search_desc[i].name, keysig_search_desc[i].comment); 607 printf(" %-10s\t%s\n", keysig_search_desc[i].name, keysig_search_desc[i].comment);
608 exit(1); 608 exit(1);
609} 609}
610 610