diff options
author | Stef Walter <stef@thewalter.net> | 2014-08-08 17:19:28 +0200 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2014-08-08 18:44:20 +0200 |
commit | 29325102bb93239313f4b2928f18a589731bd125 (patch) | |
tree | 0795efa693b02ec6fa6bbd99ef1092b3ea9eda6f | |
parent | 2663c834561207b947f6a8e98a7661644b6c9630 (diff) | |
download | p11-kit-29325102bb93239313f4b2928f18a589731bd125.tar.gz |
trust: Remove dead while condition in anchor commond
-rw-r--r-- | trust/anchor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trust/anchor.c b/trust/anchor.c index 19483a4..cdc6486 100644 --- a/trust/anchor.c +++ b/trust/anchor.c @@ -631,7 +631,7 @@ p11_trust_anchor (int argc, assert_not_reached (); break; } - } while (opt != -1); + }; argc -= optind; argv += optind; |