diff options
author | June McEnroe <june@causal.agency> | 2021-06-08 14:27:44 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-06-08 14:27:44 -0400 |
commit | 5213546273ee798369ff594ad60077f1bef4655e (patch) | |
tree | 37e7aec5ddc583047da1126ffdc41a81f20cf1f6 /cgit.h | |
parent | Squashed 'www/git.causal.agency/cgit/' content from commit 02221fd3 (diff) | |
download | src-5213546273ee798369ff594ad60077f1bef4655e.tar.gz src-5213546273ee798369ff594ad60077f1bef4655e.zip |
Squashed 'www/git.causal.agency/cgit/' changes from 55fa25ad..5258c297
5258c297 git: update to v2.32.0 6dbbffe0 git: update to v2.31.1 62eb8db4 md2html: use proper formatting for hr d889cae8 git: update to v2.31.0 4ffadc1e git: update to v2.30.1 bd6f5683 tests: t0107: support older and/or non-GNU tar f69626c6 md2html: use sane_lists extension cef27b67 git: update to v2.30.0 b1739247 git: update to v2.29.2 fe99c76e git: update to v2.29.1 adcc4f82 tests: try with commit-graph a1039ab1 tests: do not copy snapshots to /tmp/ a4de0e81 global: replace hard coded hash length 779631c6 global: replace references to 'sha1' with 'oid' 629659d2 git: update to v2.29.0 205837d4 git: update to v2.28.0 f780396c git: update to v2.27.0 0462f08d git: update to v2.26.0 git-subtree-dir: www/git.causal.agency/cgit git-subtree-split: 5258c297ba6fb604ae1415fbc19a3fe42457e49e
Diffstat (limited to '')
-rw-r--r-- | cgit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cgit.h b/cgit.h index 7ec46b48..69b5c132 100644 --- a/cgit.h +++ b/cgit.h @@ -14,7 +14,7 @@ #include <tag.h> #include <diff.h> #include <diffcore.h> -#include <argv-array.h> +#include <strvec.h> #include <refs.h> #include <revision.h> #include <log-tree.h> @@ -164,7 +164,7 @@ struct reflist { struct cgit_query { int has_symref; - int has_sha1; + int has_oid; int has_difftype; char *raw; char *repo; @@ -172,8 +172,8 @@ struct cgit_query { char *search; char *grep; char *head; - char *sha1; - char *sha2; + char *oid; + char *oid2; char *path; char *name; char *url; |