Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
babeld
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
babeld
Commits
33006746
Commit
33006746
authored
Mar 12, 2019
by
Killian Lufau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing add_filter when parsing install filters
It was removed by accident in commit
ce457a79
.
parent
e4c0e82b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
configuration.c
configuration.c
+1
-0
No files found.
configuration.c
View file @
33006746
...
@@ -1035,6 +1035,7 @@ parse_config_line(int c, gnc_t gnc, void *closure,
...
@@ -1035,6 +1035,7 @@ parse_config_line(int c, gnc_t gnc, void *closure,
c
=
parse_filter
(
c
,
gnc
,
closure
,
&
filter
);
c
=
parse_filter
(
c
,
gnc
,
closure
,
&
filter
);
if
(
c
<
-
1
)
if
(
c
<
-
1
)
goto
fail
;
goto
fail
;
add_filter
(
filter
,
&
install_filters
);
}
else
if
(
strcmp
(
token
,
"interface"
)
==
0
)
{
}
else
if
(
strcmp
(
token
,
"interface"
)
==
0
)
{
struct
interface_conf
*
if_conf
;
struct
interface_conf
*
if_conf
;
c
=
parse_ifconf
(
c
,
gnc
,
closure
,
&
if_conf
);
c
=
parse_ifconf
(
c
,
gnc
,
closure
,
&
if_conf
);
...
...
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