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
787d2e65
Commit
787d2e65
authored
Mar 16, 2009
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename finalise_filters to finalise_config.
parent
73b4d3f4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
babel.c
babel.c
+2
-2
config.c
config.c
+1
-1
config.h
config.h
+1
-1
No files found.
babel.c
View file @
787d2e65
...
...
@@ -252,9 +252,9 @@ main(int argc, char **argv)
}
}
rc
=
finalise_
filters
();
rc
=
finalise_
config
();
if
(
rc
<
0
)
{
fprintf
(
stderr
,
"Couldn't finalise
filters
.
\n
"
);
fprintf
(
stderr
,
"Couldn't finalise
configuration
.
\n
"
);
exit
(
1
);
}
...
...
config.c
View file @
787d2e65
...
...
@@ -538,7 +538,7 @@ redistribute_filter(const unsigned char *prefix, unsigned short plen,
}
int
finalise_
filters
()
finalise_
config
()
{
struct
filter
*
filter
=
calloc
(
1
,
sizeof
(
struct
filter
));
if
(
filter
==
NULL
)
...
...
config.h
View file @
787d2e65
...
...
@@ -45,4 +45,4 @@ int output_filter(const unsigned char *id, const unsigned char *prefix,
unsigned
short
plen
,
unsigned
int
ifindex
);
int
redistribute_filter
(
const
unsigned
char
*
prefix
,
unsigned
short
plen
,
unsigned
int
ifindex
,
int
proto
);
int
finalise_
filters
(
void
);
int
finalise_
config
(
void
);
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