Author: John Buttery <john@io.com>
authorJoseph Bongaarts <foxxe@wtfs.net>
Tue, 19 Feb 2002 21:31:44 +0000 (21:31 +0000)
committerJoseph Bongaarts <foxxe@wtfs.net>
Tue, 19 Feb 2002 21:31:44 +0000 (21:31 +0000)
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
ircd/ircd.c

index 197a1342f65e5650358a525b519480c1a13ac70f..c9c18513cdcc8d2634c781ecbe6feee53903da32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-02-19 John Buttery <john@io.com>
+
+       * ircd/ircd.c: Updated "No such file" error message.
+       
 2002-02-18 Joseph Bongaarts <foxxe@wtfs.net>
 
        * ircd/m_kill.c: Changed m_kill() to do_kill() because its not
index ea3a538f1e74868eb7452cb2ca6e02f715be12b7..f4666e4eb9c3b4682f167318896bd55c71c04b66 100644 (file)
@@ -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;
 }