mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove the static from int hardlink_check_uid.
There is an external use in the opensolaris code. I am not sure how this ever worked but I have seen two reports of: link_elf: symbol hardlink_check_uid undefined lately. Reported by: Scott Ullrich (sullrich gmail.com), pfsense Reported by: Mister Olli (mister.olli googlemail.com)
This commit is contained in:
parent
8eeaaffaac
commit
aed2a06174
1 changed files with 1 additions and 1 deletions
|
|
@ -1507,7 +1507,7 @@ linkat(struct thread *td, struct linkat_args *uap)
|
|||
UIO_USERSPACE, (flag & AT_SYMLINK_FOLLOW) ? FOLLOW : NOFOLLOW));
|
||||
}
|
||||
|
||||
static int hardlink_check_uid = 0;
|
||||
int hardlink_check_uid = 0;
|
||||
SYSCTL_INT(_security_bsd, OID_AUTO, hardlink_check_uid, CTLFLAG_RW,
|
||||
&hardlink_check_uid, 0,
|
||||
"Unprivileged processes cannot create hard links to files owned by other "
|
||||
|
|
|
|||
Loading…
Reference in a new issue