changeset 12730:723a26a7d328

Put modulename in quotes when complaining about its non-existence
author Dennis Schridde <devurandom@gmx.net>
date Thu, 10 Feb 2011 14:58:43 +0100
parents 08e4280e5bfd
children 775a3a64ea74
files src/lib/module-dir.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/module-dir.c	Thu Feb 10 03:03:28 2011 +0200
+++ b/src/lib/module-dir.c	Thu Feb 10 14:58:43 2011 +0100
@@ -432,7 +432,7 @@
 		/* make sure all modules were found */
 		for (; *module_names != NULL; module_names++) {
 			if (**module_names != '\0') {
-				i_fatal("Plugin %s not found from directory %s",
+				i_fatal("Plugin '%s' not found from directory %s",
 					*module_names, dir);
 			}
 		}