From 47b6f8b9825f3e663966b5964137614d7f296a4c Mon Sep 17 00:00:00 2001 From: Joseph Bongaarts Date: Tue, 19 Feb 2002 21:31:44 +0000 Subject: [PATCH] Author: John Buttery Log message: Fixed "No such file" error message. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@648 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- ChangeLog | 4 ++++ ircd/ircd.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 197a134..c9c1851 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-02-19 John Buttery + + * ircd/ircd.c: Updated "No such file" error message. + 2002-02-18 Joseph Bongaarts * ircd/m_kill.c: Changed m_kill() to do_kill() because its not diff --git a/ircd/ircd.c b/ircd/ircd.c index ea3a538..f4666e4 100644 --- a/ircd/ircd.c +++ b/ircd/ircd.c @@ -492,9 +492,9 @@ static char check_file_access(const char *path, char which, int mode) { fprintf(stderr, "Check on %cPATH (%s) failed: %s\n" - "Please create file and/or rerun `make config' and " - "recompile to correct this.\n", - which, path, strerror(errno)); + "Please create this file and/or rerun `configure' " + "using --with-%cpath and recompile to correct this.\n", + which, path, strerror(errno), which); return 0; } -- 2.20.1