Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
de004a7d
Commit
de004a7d
authored
9 years ago
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(legacy) interfaces.inc isset vs !empty
parent
5abc7a2d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
interfaces.inc
src/etc/inc/interfaces.inc
+4
-4
No files found.
src/etc/inc/interfaces.inc
View file @
de004a7d
...
@@ -2941,7 +2941,7 @@ function interface_configure($interface = 'wan', $reloadall = false, $linkupeven
...
@@ -2941,7 +2941,7 @@ function interface_configure($interface = 'wan', $reloadall = false, $linkupeven
* the interface config again, which attempts to spoof the MAC again,
* the interface config again, which attempts to spoof the MAC again,
* which cycles the link again...
* which cycles the link again...
*/
*/
if
(
isset
(
$wancfg
[
'spoofmac'
])
&&
(
$wancfg
[
'spoofmac'
]
!=
$mac
))
{
if
(
!
empty
(
$wancfg
[
'spoofmac'
])
&&
(
$wancfg
[
'spoofmac'
]
!=
$mac
))
{
mwexec
(
"/sbin/ifconfig "
.
escapeshellarg
(
$realhwif
)
.
mwexec
(
"/sbin/ifconfig "
.
escapeshellarg
(
$realhwif
)
.
" link "
.
escapeshellarg
(
$wancfg
[
'spoofmac'
]));
" link "
.
escapeshellarg
(
$wancfg
[
'spoofmac'
]));
...
@@ -2973,12 +2973,12 @@ function interface_configure($interface = 'wan', $reloadall = false, $linkupeven
...
@@ -2973,12 +2973,12 @@ function interface_configure($interface = 'wan', $reloadall = false, $linkupeven
}
}
/* media */
/* media */
if
(
isset
(
$wancfg
[
'media'
])
||
isset
(
$wancfg
[
'mediaopt'
]))
{
if
(
!
empty
(
$wancfg
[
'media'
])
||
!
empty
(
$wancfg
[
'mediaopt'
]))
{
$cmd
=
"/sbin/ifconfig "
.
escapeshellarg
(
$realhwif
);
$cmd
=
"/sbin/ifconfig "
.
escapeshellarg
(
$realhwif
);
if
(
isset
(
$wancfg
[
'media'
]))
{
if
(
!
empty
(
$wancfg
[
'media'
]))
{
$cmd
.=
" media "
.
escapeshellarg
(
$wancfg
[
'media'
]);
$cmd
.=
" media "
.
escapeshellarg
(
$wancfg
[
'media'
]);
}
}
if
(
isset
(
$wancfg
[
'mediaopt'
]))
{
if
(
!
empty
(
$wancfg
[
'mediaopt'
]))
{
$cmd
.=
" mediaopt "
.
escapeshellarg
(
$wancfg
[
'mediaopt'
]);
$cmd
.=
" mediaopt "
.
escapeshellarg
(
$wancfg
[
'mediaopt'
]);
}
}
mwexec
(
$cmd
);
mwexec
(
$cmd
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment