summaryrefslogtreecommitdiff
path: root/devel/fossil/files/patch-sha1sum
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2017-03-13 16:44:09 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2017-03-13 16:44:09 +0000
commit5e7f82b2a08fba6f7948311e369f267609f224c1 (patch)
tree3573ca7f144b47622c6e9f88a9aac677b2ed5753 /devel/fossil/files/patch-sha1sum
parentAdd a note about make makesum verifying HTTPS certificates. (diff)
devel/fossil: update to 2.1
Changes: https://www.fossil-scm.org/index.html/doc/version-2.1/www/changes.wiki
Diffstat (limited to 'devel/fossil/files/patch-sha1sum')
-rw-r--r--devel/fossil/files/patch-sha1sum24
1 files changed, 0 insertions, 24 deletions
diff --git a/devel/fossil/files/patch-sha1sum b/devel/fossil/files/patch-sha1sum
deleted file mode 100644
index fbe9416ac00b..000000000000
--- a/devel/fossil/files/patch-sha1sum
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: src/checkin.c
-==================================================================
---- src/checkin.c.orig 2017-03-03 12:00:30 UTC
-+++ src/checkin.c
-@@ -466,7 +466,8 @@ void status_cmd(void){
-
- Blob report = BLOB_INITIALIZER;
- enum {CHANGES, STATUS} command = *g.argv[1]=='s' ? STATUS : CHANGES;
-- int useHash = find_option("hash", 0, 0)!=0;
-+ /* --sha1sum is an undocumented alias for --hash for backwards compatiblity */
-+ int useHash = find_option("hash",0,0)!=0 || find_option("sha1sum",0,0)!=0;
- int showHdr = command==CHANGES && find_option("header", 0, 0);
- int verboseFlag = command==CHANGES && find_option("verbose", "v", 0);
- const char *zIgnoreFlag = find_option("ignore", 0, 1);
-@@ -2070,7 +2071,8 @@ void commit_cmd(void){
-
- memset(&sCiInfo, 0, sizeof(sCiInfo));
- url_proxy_options();
-- useHash = find_option("hash", 0, 0)!=0;
-+ /* --sha1sum is an undocumented alias for --hash for backwards compatiblity */
-+ useHash = find_option("hash",0,0)!=0 || find_option("sha1sum",0,0)!=0;
- noSign = find_option("nosign",0,0)!=0;
- forceDelta = find_option("delta",0,0)!=0;
- forceBaseline = find_option("baseline",0,0)!=0;