Commit c42293a9 authored by Artur Świgoń's avatar Artur Świgoń Committed by Mike Marshall

orangefs: Add octal zero prefix

This patch adds a missing zero to mode 755 specification required to
express it in octal numeral system.
Reported-by: default avatarŁukasz Wrochna <l.wrochna@samsung.com>
Signed-off-by: default avatarArtur Świgoń <a.swigon@partner.samsung.com>
Signed-off-by: default avatarMike Marshall <hubcap@omnibond.com>
parent f74c2bb9
......@@ -224,7 +224,7 @@ static int orangefs_symlink(struct inode *dir,
struct orangefs_object_kref ref;
struct inode *inode;
struct iattr iattr;
int mode = 755;
int mode = 0755;
int ret;
gossip_debug(GOSSIP_NAME_DEBUG, "%s: called\n", __func__);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment