cli: fix notmuch top level argument parsing

Use strcmp instead of STRNCMP_LITERAL, which matches the prefix
instead of the whole argument.
This commit is contained in:
Jani Nikula 2012-12-03 22:56:12 +02:00 committed by David Bremner
parent fb6edb0800
commit 8ce50f300f

View file

@ -245,10 +245,10 @@ main (int argc, char *argv[])
if (argc == 1)
return notmuch (local);
if (STRNCMP_LITERAL (argv[1], "--help") == 0)
if (strcmp (argv[1], "--help") == 0)
return notmuch_help_command (NULL, argc - 1, &argv[1]);
if (STRNCMP_LITERAL (argv[1], "--version") == 0) {
if (strcmp (argv[1], "--version") == 0) {
printf ("notmuch " STRINGIFY(NOTMUCH_VERSION) "\n");
return 0;
}