Commits
- Commit:
53bf0b541977b66862040d4b633fb6b5d3a3c6c8
- From:
- Omar Polo <op@omarpolo.com>
- Date:
rename lib/sha1.c to lib/hash.c
It will soon grow functions to deal with sha256 too. stsp@ agrees.
- Commit:
5822e79e39a8777984e08b5d89a8c55d6aa0356d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
include sha2.h too where sha1.h is included
In preparation for wide sha256 support; stsp@ agrees. Change done
mechanically with
find . -iname \*.[cy] -exec sam {} +
X ,x/<sha1\.h>/i/\n#include <sha2.h>
- Commit:
6f3190632709528909c1dc45046a2a85921584aa
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Stefan Sperling <stsp@stsp.name>
- Date:
sort getopt() option lists and switch statements; patch by Josiah Frentsos
- Commit:
58e31a80da4f4a9e10eaea148672190f35107a47
- From:
- Omar Polo <op@omarpolo.com>
- Date:
build with -Wwrite-strings
Throwing this into the mix for a while, we can always get rid of it
again if it becomes annoying. No objections from stsp@
- Commit:
336075a42a5ae0fa322db734c481d21998e82bb8
- From:
- Omar Polo <op@omarpolo.com>
- Date:
build with -Wmissing-prototypes
ok stsp@
- Commit:
d58ddaf3fc10239711ae7a88664e3a100567ba3c
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
const-ify tables
ok thomas_adam millert
- Commit:
3a12860c3cbeae377b90f5526d0b75ccdb01bfc4
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make the URI parser tolerate trailing slashes at the end of the input URI
ok naddy
- Commit:
2e60146439253c7e4c5fba12e697c2abd29576b8
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix regress/fetch build; broken by my renaming of got_fetch_parse_uri()
- Commit:
6059809a13b5d528052e38f84661039e6565f458
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use size_t for loop indices to avoid signedness warnings; by emaste@freebsd
Same change as 16aeacf7088d, for subdirectories other than lib/
- Commit:
0921e08fd73a69dae201e11e6feaf9227be19285
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove redundant leading slashes from repository path when parsing URIs
- Commit:
7fb414ae4d46ebdaeff458477ba801f9ad5853c4
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a -q option to tests for quiet output and use it for 'make regress'
Previous default output remains when test cases are run individually.
ok tracey
- Commit:
62a4c94cd911a5c1ff54c4787c05d0876d30f07b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
support non-default port numbers with SSH and tweak URI parser port handling
- Commit:
a244cd923ce2b5d7e81afd34b5ab402b87a69abb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix fetch test's expected results and check results properly
- Commit:
9a682fbe2c64ce71685dc332f7d2758ede442224
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add support for Git's SCP style URLs to got_fetch_parse_uri()
- Commit:
629bd8f306361dacededfd9446e41895353b3fe5
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix fetch_test build
- Commit:
82ebf666930f3ea5b44663d1fede65ed22282361
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
tweak parse_uri() function, declare it as public API, and add a test for it