Fix example checkout to forbid rather than require --

Make the example program for checkout follow git syntax, where
"--" indicates a file.  This was likely just a strcmp return
value confusion.
This commit is contained in:
David Turner
2019-07-24 12:01:27 -04:00
parent e3adc99e1f
commit ed387d4af6

View File

@@ -195,7 +195,7 @@ int lg2_checkout(git_repository *repo, int argc, char **argv)
fprintf(stderr, "unhandled\n");
err = -1;
goto cleanup;
} else if (strcmp("--", args.argv[args.pos])) {
} else if (!strcmp("--", args.argv[args.pos])) {
/**
* Try to checkout the given path
*/