]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
fs/binfmt_misc.c: add terminating newline to /proc/sys/fs/binfmt_misc/status
authorQinghuang Feng <qhfeng.kernel@gmail.com>
Tue, 6 Jan 2009 22:41:38 +0000 (14:41 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 6 Jan 2009 23:59:19 +0000 (15:59 -0800)
The following is what it looks like before patching.
It is not much readable.

user@ubuntu:/proc/sys/fs/binfmt_misc$ cat status
enableduser@ubuntu:/proc/sys/fs/binfmt_misc$

Signed-off-by: Qinghuang Feng <qhfeng.kernel@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/binfmt_misc.c

index e1158cb4fbd6c9568251696e749dbd56b6bdc588..c4e83537ead77501f03d7fcb3a748727f2624d5e 100644 (file)
@@ -649,7 +649,7 @@ static const struct file_operations bm_register_operations = {
 static ssize_t
 bm_status_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
 {
-       char *s = enabled ? "enabled" : "disabled";
+       char *s = enabled ? "enabled\n" : "disabled\n";
 
        return simple_read_from_buffer(buf, nbytes, ppos, s, strlen(s));
 }