Commit Briefs


fd79e2e027 Omar Polo

typos



805253d515 Christian Weisgerber

fix level of indirection

ok stsp


3a12860c3c Stefan Sperling

make the URI parser tolerate trailing slashes at the end of the input URI

ok naddy





e3f8625647 Christian Weisgerber

explicitly include <endian.h> for be32toh()


931651ba23 Stefan Sperling

bump version number


4c91cf3d23 Stefan Sperling

CHANGES for 0.67 (tags/0.67)


3e1665345b Christian Weisgerber

const-ify command and option tables

ok stsp


e546352ca5 Josh Rickmar

remove stray tab that snuck in


bdc78ba63c Josh Rickmar

display GMT offset in cat command

ok stsp


8934ea8b1b Omar Polo

factorize imsg_clear calls after imsg_flush failures

imsg_clear frees and closes resources allocated as part of enqueueing imsgs so it's a no-op after reads. discussed with and ok stsp@


688fe08b75 Omar Polo

fix fd leak in got_fetch_pack, ok stsp@



67fd684965 Stefan Sperling

reuse existing deltas when creating pack files

tested by thomas, naddy, and myself


b593496508 Christian Weisgerber

shrink the width of formatted output fields to their expected size

Replace FMT_SCALED_STRSIZE with (FMT_SCALED_STRSIZE - 2) as field width when formatting output for printing. FMT_SCALED_STRSIZE includes space for a nul byte and a minus sign. Output values are expected to be always positive here. ok stsp


f602742610 Christian Weisgerber

consistently match size of hash variables to that returned by murmurhash

ok millert stsp






5a20d08d65 Omar Polo

tweak error reporting due to invalid numbers

Use the same idiom as in the strtonum(3) manpage which produces a more readable error message. OK kn, stsp