mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
tmpfs: Fix error being cleared after commit c12118f6ce
In tmpfs_link() error was erroneously cleared in commitc12118f6ce. Sponsored by: The FreeBSD Foundation MFC after: 3 days MFC with:c12118f6ce
This commit is contained in:
parent
5c1428d2c4
commit
a48416f844
1 changed files with 1 additions and 1 deletions
|
|
@ -808,7 +808,7 @@ tmpfs_link(struct vop_link_args *v)
|
|||
error = 0;
|
||||
|
||||
out:
|
||||
return (0);
|
||||
return (error);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue