aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQi Yong <qiyong@fc-cn.com>2006-10-16 07:42:23 -0400
committerDavid Woodhouse <dwmw2@infradead.org>2006-10-21 11:24:08 -0400
commitc7cf0c68ea4e2020db7204eb0ed4412b2cbb167d (patch)
tree06c3dccf8e40185f38232962f8e6b6d37177922b
parentc7438d02b384e82261e28fc280167f4e7a65e822 (diff)
[JFFS2] Fix jffs2_follow_link() typo
typo fix: noticed this typo while reading the patch "jffs2: fix symlink error handling" Signed-off-by: David Woodhouse <dwmw2@infradead.org>
-rw-r--r--fs/jffs2/symlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/symlink.c b/fs/jffs2/symlink.c
index fc211b6e9b03..b90d5aa3d969 100644
--- a/fs/jffs2/symlink.c
+++ b/fs/jffs2/symlink.c
@@ -51,7 +51,7 @@ static void *jffs2_follow_link(struct dentry *dentry, struct nameidata *nd)
51 */ 51 */
52 52
53 if (!p) { 53 if (!p) {
54 printk(KERN_ERR "jffs2_follow_link(): can't find symlink taerget\n"); 54 printk(KERN_ERR "jffs2_follow_link(): can't find symlink target\n");
55 p = ERR_PTR(-EIO); 55 p = ERR_PTR(-EIO);
56 } 56 }
57 D1(printk(KERN_DEBUG "jffs2_follow_link(): target path is '%s'\n", (char *) f->target)); 57 D1(printk(KERN_DEBUG "jffs2_follow_link(): target path is '%s'\n", (char *) f->target));