.disk_label.contentDetails to be in line with previous shell script.
+2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * util/grub-mkrescue.c (main): Add trailing \n in
+ .disk_label.contentDetails to be in line with previous shell script.
+
2013-11-17 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-mkrescue.c (main): Use right source file for bootinfo.txt.
free (label);
label_text = grub_util_path_concat (2, core_services, ".disk_label.contentDetails");
f = grub_util_fopen (label_text, "wb");
- fprintf (f, "%s", label_string);
+ fprintf (f, "%s\n", label_string);
fclose (f);
free (label_string);
free (label_text);