helper: Fix error message when modules.dep is not found.
authorRichard W.M. Jones <rjones@redhat.com>
Mon, 6 Jun 2011 16:07:23 +0000 (17:07 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 6 Jun 2011 16:07:23 +0000 (17:07 +0100)
helper/ext2initrd.c

index 13e429c..da4bf48 100644 (file)
@@ -175,7 +175,7 @@ read_module_deps (const char *modpath)
   char *filename = xasprintf ("%s/modules.dep", modpath);
   FILE *fp = fopen (filename, "r");
   if (fp == NULL)
-    error (EXIT_FAILURE, errno, "open: %s", modpath);
+    error (EXIT_FAILURE, errno, "open: %s/modules.dep", modpath);
 
   char *line = NULL;
   size_t llen = 0;