On Mon, 22 Dec 2014, Sami Kerola wrote: > line[strlen("/dev/")] = 't'; The above is incorrect. Following fix can be found from my github 'script' branch. @@ -423,7 +423,7 @@ static void dooutput(struct script_control *ctl) static void getslave(struct script_control *ctl) { #ifndef HAVE_LIBUTIL - line[strlen("/dev/")] = 't'; + ctl->line[strlen("/dev/")] = 't'; -- Sami Kerola http://www.iki.fi/kerolasa/ -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html