sbsign,sbverify: Update getopt_long optstrings

The optstrings for sbsign and sbverify are out of sync with the long
options, this change brings them up to date.

Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
Jeremy Kerr 2012-06-11 19:49:28 +08:00
parent dc9ffc752f
commit a8f1453a53
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ int main(int argc, char **argv)
for (;;) {
int idx;
c = getopt_long(argc, argv, "o:c:k:v", options, &idx);
c = getopt_long(argc, argv, "o:c:k:dvVh", options, &idx);
if (c == -1)
break;

View file

@ -202,7 +202,7 @@ int main(int argc, char **argv)
for (;;) {
int idx;
c = getopt_long(argc, argv, "c:n", options, &idx);
c = getopt_long(argc, argv, "c:d:nVh", options, &idx);
if (c == -1)
break;