diff options
author | Adrian Hunter <ext-adrian.hunter@nokia.com> | 2008-08-14 11:57:45 +0300 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-08-14 09:58:29 +0100 |
commit | bde86fec7c822b6009d3cfefc20b76b8d34716af (patch) | |
tree | e8219cc3bef601c3fb6331c8cbcd56f037b3f24b /fs/jffs2 | |
parent | 742c52533b05d8ae83c794bd6811100675b85ce5 (diff) |
[JFFS2] Correct symlink name too long error code
Signed-off-by: Adrian Hunter <ext-adrian.hunter@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'fs/jffs2')
-rw-r--r-- | fs/jffs2/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/dir.c b/fs/jffs2/dir.c index cd219ef55254..b1aaae823a52 100644 --- a/fs/jffs2/dir.c +++ b/fs/jffs2/dir.c @@ -311,7 +311,7 @@ static int jffs2_symlink (struct inode *dir_i, struct dentry *dentry, const char /* FIXME: If you care. We'd need to use frags for the target if it grows much more than this */ if (targetlen > 254) - return -EINVAL; + return -ENAMETOOLONG; ri = jffs2_alloc_raw_inode(); |