diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-01-14 08:14:18 -0500 |
---|---|---|
committer | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-01-14 08:15:25 -0500 |
commit | 002c8976ee537724b20a5e179d9b349309438836 (patch) | |
tree | 272ebe6d0dcb06bb16b978fb9793d266dbc1301a /fs/open.c | |
parent | a26eab2400f0477bfac0255600552394855016f7 (diff) |
[CVE-2009-0029] System call wrappers part 16
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'fs/open.c')
-rw-r--r-- | fs/open.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1081,7 +1081,7 @@ asmlinkage long sys_openat(int dfd, const char __user *filename, int flags, | |||
1081 | * For backward compatibility? Maybe this should be moved | 1081 | * For backward compatibility? Maybe this should be moved |
1082 | * into arch/i386 instead? | 1082 | * into arch/i386 instead? |
1083 | */ | 1083 | */ |
1084 | asmlinkage long sys_creat(const char __user * pathname, int mode) | 1084 | SYSCALL_DEFINE2(creat, const char __user *, pathname, int, mode) |
1085 | { | 1085 | { |
1086 | return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode); | 1086 | return sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode); |
1087 | } | 1087 | } |