Commits
- Commit:
e2308af98f7d01e81f6173b9c264b1c21190a24a
- From:
- Kyle Ackerman <kackerman0102@gmail.com>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
plug a memory leak in got_privsep_recv_send_remote_ref
We didn't always call imsg_free(); while here also fix the `default`
branch so it actually errors on unexpected messages.
Diff from Kyle Ackerman with tweaks from tb@
- Commit:
5c584cf5785c945cd2a86cd9202f672801edec1e
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
plug an object leak introduced in my tagged-tag packing fix
- Commit:
dbd4010a985e2247831767266dccf19288d1f6b7
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove a todo item that's done
- Commit:
e66656e96ceb74b7356b6be8a962717a975f496c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix pack file creation in the presence of tagged tag objects
If a repository contains a tag that tags another tag we could fail
with a "bad object data" error while creating pack files because
the packed-object-enumeration code assumed that only commits get
tagged, trying to parse the tagged tag object as if it were a commit.
This issue affected 'got send' and 'gotadmin pack'.
There is probably more work to do here because other weird cases are
known to exist in the wild, such as git.git's refs/tags/junio-gpg-pub
which tags a blob.
Problem with 'got send' reported by jrick@
- Commit:
9c49c6c0edf6a702aa6b70f8327de7c53b2a42ad
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
prevent tog segfault upon unexpected object type in ref list view
If an unexpected object type is found while resolving a reference
in the ref view, have tog exit with an "unknown object type" error
instead of crashing.
Found while playing with a repo which contains tags that tag tags.
- Commit:
a158173067944ceae5091cd8ae47306e537641ea
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a todo item
- Commit:
b7c2acffeac8f0e1dff53ca2a94dccb2bf8b2b1b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix incorrect error code raised from diff_modified_blob()
- Commit:
370f10653490c6d8f3e587869c96c100535edc9f
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make got_object_open_loose_fd() return NO_OBJ error upon ENOENT
Some callers were manually converting from ENOENT to NO_OBJ.
Checking errno becomes increasingly unreliable the further up the
call-chain we return to. Let's return NO_OBJ directly at the spot
where the original error condition is detected.
- Commit:
f9f627c50558e4f15df222bfeeeb5c960d527d70
- From:
- Omar Polo <op@omarpolo.com>
- Date:
trailing whitespace; from man -Tlint
- Commit:
a9f29301e8098b4584ae01eeb197888b2685de2c
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotd.conf: document macro syntax, stealing from gotwebd
- Commit:
d194664ffaf3774df69bc267ebc173bed44892a3
- From:
- Omar Polo <op@omarpolo.com>
- Date:
use _POSIX_HOST_NAME_MAX instead of HOST_NAME_MAX
this is to help -portable. Some systems don't define HOST_NAME_MAX
at all, and assume instead that code will use sysctl(_SC_HOST_NAME_MAX)
with a VLA or a dynamic allocation, which is completely backward
and useless. So, use the _POSIX hammer on this one too.
it's dirty, but it's better to strive to avoid gratious -portable
changes.
reported and discussed with Thomas Adam.
- Commit:
5167b9bce185b01392b59bb7d2501d78cfdb427d
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
bump version number
- Commit:
61723c50d314838155b5a161801dd6546e34fe4c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
CHANGES for 0.103
- Commit:
f0d5b68f22c1200f25b888f85a07d2db0a6079c7
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
have 'make clean' remove gotd-secrets.conf file created by gotd regress
- Commit:
68b594d74025261ff22a39e787a7acec640a3a66
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sync dist file list
- Commit:
036f5313d0b784cd9859d97b17b21a59b998fc04
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
have 'make clean' delete files generated by secrets regress
- Commit:
9f79d84a27e2e2d2b69ee8457616257ffbabaca2
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix documentation of auth keyword in gotd.conf.5
- Commit:
cebd4beed2990ad47383df6f9a11f2df0204fc6a
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
wording improvements for gotd-secrets.conf man page
- Commit:
a839c406a7d2d882a0b2e068f71054688beadf39
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
traverse regress/secrets during 'make regress'
- Commit:
c40a42cef14391ad803a5cbfc3188ac0aea2b885
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add stderr files generated by secrets regress to ignores list
- Commit:
65b27e578bc20301a764fd2cd673dd3e66b68c95
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make output of secrets regress tests more like that of other tests we have
ok op@
- Commit:
1d47f68bf9b6f33efff83db74a63cbd0e53c5ff6
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: minor tweaks to the HTML for ease of styling
This adds a few more classes and wrapper divs that make easier to
customize the look, without changing the appearance.
- Commit:
6e1b28b643862111cb5b8b916fef8249b1b36c97
- From:
- Omar Polo <op@omarpolo.com>
- Date:
improve the gotd-secrets.conf syntax
don't reuse the username as the label since it makes impossible to have
multiple entries with the same username.
ok stsp@
- Commit:
4d982e99055cf01430da8b639924c8b13726090e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fix some typos with codespell(1); ok/tweaks tb@ and stsp@
- Commit:
3a8e4bcba34d9b9ff67cb6f4457a7a43188584fc
- From:
- Omar Polo <op@omarpolo.com>
- Date:
sync files from diff.git edc37d001aae9784c6d575f08850d49139adf02f