Commit Briefs

f9f627c505 Omar Polo

trailing whitespace; from man -Tlint (main)



d194664ffa Omar Polo

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.


5167b9bce1 Stefan Sperling

bump version number


61723c50d3 Stefan Sperling

CHANGES for 0.103 (tags/0.103)



68b594d740 Stefan Sperling

sync dist file list



9f79d84a27 Stefan Sperling

fix documentation of auth keyword in gotd.conf.5


cebd4beed2 Stefan Sperling

wording improvements for gotd-secrets.conf man page


a839c406a7 Stefan Sperling

traverse regress/secrets during 'make regress'



65b27e578b Stefan Sperling

make output of secrets regress tests more like that of other tests we have

ok op@


1d47f68bf9 Omar Polo

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.


6e1b28b643 Omar Polo

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@





ae0afea04d Stefan Sperling

typo fix


b4358cd08e Stefan Sperling

require root-ownership of gotd-secrets.conf


f7520f7a43 Stefan Sperling

apply realpath() to the gotd -s argument


871cb200f7 Stefan Sperling

allow gotd_secrets_free() to be called with NULL pointer; fixes gotd regress

ok op@


3ecc530e68 Omar Polo

gitwrapper: add dummy gotd_secrets_get() to satisfy the linker

This function is the only reason we had to pull in secrets.c in gitwrapper, because it's needed for parse.y (even if it's never called.) ok stsp@


5fb267cb9e Omar Polo

initial gotd-secrets.conf implementation

This moves the handling of the secrets outside gotd.conf. There will be a few changes to this, committing it as-is to continue hacking in tree. ok stsp@


477e0bbd51 Omar Polo

style