diff options
| author | Alexander Barton <alex@barton.de> | 2013-01-01 19:25:06 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2013-01-01 19:25:06 +0100 |
| commit | 950aeec3ff0e15c456ac32d8fecee8c73f7c5df3 (patch) | |
| tree | e8354b832a03692eab5d2a5f8d542a41aa476637 /src | |
| parent | 60a9a7f11860a3953d215a377d31714e02d09eba (diff) | |
| download | ngircd-950aeec3ff0e15c456ac32d8fecee8c73f7c5df3.tar.gz ngircd-950aeec3ff0e15c456ac32d8fecee8c73f7c5df3.zip | |
Use "${docdir}/Commands.txt" as help text file
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/conf.c | 4 | ||||
| -rw-r--r-- | src/ngircd/defines.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index fa1bfba1..d5a28bd7 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -706,7 +706,7 @@ Set_Defaults(bool InitServers) array_free(&Conf_Helptext); strlcpy(Conf_MotdFile, SYSCONFDIR, sizeof(Conf_MotdFile)); strlcat(Conf_MotdFile, MOTD_FILE, sizeof(Conf_MotdFile)); - strlcpy(Conf_HelpFile, SYSCONFDIR, sizeof(Conf_HelpFile)); + strlcpy(Conf_HelpFile, DOCDIR, sizeof(Conf_HelpFile)); strlcat(Conf_HelpFile, HELP_FILE, sizeof(Conf_HelpFile)); strcpy(Conf_ServerPwd, ""); strlcpy(Conf_PidFile, PID_FILE, sizeof(Conf_PidFile)); diff --git a/src/ngircd/defines.h b/src/ngircd/defines.h index 28a260b8..3850b581 100644 --- a/src/ngircd/defines.h +++ b/src/ngircd/defines.h @@ -78,7 +78,7 @@ #define MOTD_FILE "/ngircd.motd" /** Name of the help file. */ -#define HELP_FILE "/ngircd.help" +#define HELP_FILE "/Commands.txt" /** Default chroot() directory. */ #define CHROOT_DIR "" |