summary refs log tree commit diff
path: root/xdg.c
AgeCommit message (Collapse)Author
2021-01-26Tighten up XDG base directory path handlingC. McEnroe
Don't search base directories if path starts with "/", "./" or "../", but still do if the path simply starts with ".". Bail early if HOME is needed but unset. Don't attempt to open the original path in configOpen and dataOpen.
2020-08-21Use a static buffer for base directory pathsC. McEnroe
2020-08-20Refactor base dir functions to iterate over pathsC. McEnroe
2020-08-04Say "OpenSSL" in additional permission noticesC. McEnroe
LibreSSL is "a modified version of that library".
2020-06-08Add additional permission for linking with LibreSSLC. McEnroe
https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs
2020-05-12Do not stop when files in XDG dirs are inaccessibleC. McEnroe
> When attempting to read a file, if for any reason a file in a certain > directory is unaccessible, e.g. because the directory is non-existant, > the file is non-existant or the user is not authorized to open the file, > then the processing of the file in that directory should be skipped. If > due to this a required file could not be found at all, the application > may chose to present an error message to the user.
2020-03-25Add logging functionsC. McEnroe
The mkdir dance is a bit awkward...
2020-02-11Move XDG_SUBDIR out of chat.hC. McEnroe
2020-02-10Factor out XDG base directory codeC. McEnroe
And add warnings to configOpen, since that's the only way to be accurate if a weird error occurs.