Commits


treat unexpected message from unpriv processes as error


handle errno errors correctly in got_privsep_recv_obj()


read object headers with privsep


initialize output parameter in object_path()


it seems we won't need all that many imsg types


got log: do a first-parent commit traversal instead of N-parent Running 'got log' on a repository with merge commits shows that this code isn't ready to handle merge commits yet. It printed many commits multiple times and used up a lot of memory.


clean up commit list in print_commits() regardless of error


prune unused declarations from got_lib_diff.h


remove support for the ifdef diff format from diffreg


remove REVERSE and NREVERSE diff output options from diffreg


forgot to delete D_EDIT in previous


remove support for 'edit' diff output from diffreg


remove support for "normal" diff output from diffreg


remove support for context diffs from diffreg.c


remove ignore-lines pattern support from diffreg code


adjust preadline() and ignoreline() to match diff(1) again


in diffreg.c, return value from preadline() must be freed


always free ds->ixold and ds->ixmew in got_diffreg()


always free ds->clist and ds->klist in got_diffreg()


always free ds->J in got_diffreg()


always free ds->member and ds->class in got_diffreg()


fix reallocarray error handling in diffreg.c


move diffreg's max_context into struct got_diff_state


make max_connect static as in the original diffreg.c This way we grow the array instead of doing 64 <<= 1.


mark imsg structs which contain got_object_id as __packed__