2008-02-08 22:03:20

by Sergio Luis

[permalink] [raw]
Subject: [PATCH] 2.6.24-git19 fs/smbfs/inode.c - fix warning message deprecating smbfs

This just fixes the warning message regarding smbfs to
"smbfs is deprecated and will be removed from the 2.6.27 kernel. Please migrate to cifs"
instead of
"smbfs is deprecated and will be removedfrom the 2.6.27 kernel. Please migrate to cifs"

(adding a blank space between 'removed' and 'from' and removing one between the dot and 'Please')

Signed-off-by: Sergio Luis <[email protected]>


inode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff -urN linux-2.6.24-git19.orig/fs/smbfs/inode.c linux-2.6.24-git19/fs/smbfs/inode.c
--- linux-2.6.24-git19.orig/fs/smbfs/inode.c 2008-02-08 18:42:21.000000000 -0300
+++ linux-2.6.24-git19/fs/smbfs/inode.c 2008-02-08 18:34:45.000000000 -0300
@@ -505,7 +505,7 @@
if (warn_count < 5) {
warn_count++;
printk(KERN_EMERG "smbfs is deprecated and will be removed"
- "from the 2.6.27 kernel. Please migrate to cifs\n");
+ " from the 2.6.27 kernel. Please migrate to cifs\n");
}

if (!raw_data)