diff options
author | Karl Berry <karl@freefriends.org> | 2012-03-11 18:04:02 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-03-11 18:04:02 +0000 |
commit | 51b01aa724ddf077c155ec4d2a79ca21e720b537 (patch) | |
tree | c7bbefc61fe784e3fb71ec559bab85a1ef3ef6c2 /Build/source/texk/kpathsea/cnf.c | |
parent | ce3a350555a7f3069c2715b37672f0c0d7f709fe (diff) |
prepending kpathsea: to warnings
git-svn-id: svn://tug.org/texlive/trunk@25603 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/cnf.c')
-rw-r--r-- | Build/source/texk/kpathsea/cnf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/cnf.c b/Build/source/texk/kpathsea/cnf.c index 1eac745261a..1f9dc744c88 100644 --- a/Build/source/texk/kpathsea/cnf.c +++ b/Build/source/texk/kpathsea/cnf.c @@ -1,6 +1,6 @@ /* cnf.c: read config files. - Copyright 1994, 1995, 1996, 1997, 2008, 2009, 2011 Karl Berry. + Copyright 1994, 1995, 1996, 1997, 2008, 2009, 2011, 2012 Karl Berry. Copyright 1997-2005 Olaf Weber. This library is free software; you can redistribute it and/or @@ -193,7 +193,7 @@ read_all_cnf (kpathsea kpse) string next_line = read_line (cnf_file); line[len - 1] = 0; if (!next_line) { - WARNING1 ("%s: Last line ends with \\", *cnf); + WARNING1 ("kpathsea: %s: Last line of file ends with \\", *cnf); } else { string new_line; new_line = concat (line, next_line); @@ -215,7 +215,7 @@ read_all_cnf (kpathsea kpse) string warn = getenv ("KPATHSEA_WARNING"); if (!(warn && STREQ (warn, "0"))) { WARNING1 - ("kpathsea: configuration file texmf.cnf not found in these directories: %s", + ("kpathsea: configuration file texmf.cnf not found in these directories: %s", cnf_path); } } |