X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/812b526d127c6657e571db8b33a58137af6709cd..b1a617c92817a3d5daab50934c69457942660f5b:/disobedience/help.c?ds=sidebyside diff --git a/disobedience/help.c b/disobedience/help.c index 9408654..5ebe457 100644 --- a/disobedience/help.c +++ b/disobedience/help.c @@ -29,12 +29,12 @@ void popup_help(void) { pid_t pid; int w; - byte_xasprintf(&path, "%s/disobedience.html", pkgdatadir); + byte_xasprintf(&path, "%s/index.html", dochtmldir); if(!(pid = xfork())) { exitfn = _exit; if(!xfork()) { execlp(browser, browser, path, (char *)0); - fatal(errno, "error executing %s", browser); + disorder_fatal(errno, "error executing %s", browser); } _exit(0); }