Skip to content

Commit 50ba346

Browse files
authored
Merge pull request #2536 from gforney/master
change the default checksum mode to sha256 to be consistent with github
2 parents dc4361e + 59d22dd commit 50ba346

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/shared/string_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2081,7 +2081,7 @@ int IsCommonOption(char *argi){
20812081

20822082
common_opts ParseCommonOptions(int argc, char **argv){
20832083
int i, no_minus,first_arg=0;
2084-
common_opts opts = {.hash_option = HASH_SHA1,};
2084+
common_opts opts = {.hash_option = HASH_SHA256,};
20852085

20862086
no_minus = 0;
20872087
for(i = 1; i<argc; i++){

0 commit comments

Comments
 (0)