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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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__);