Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
promise
OpenXG-RAN
Commits
75b827f8
Commit
75b827f8
authored
9 years ago
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't accept spaces at end of lines in the messages' file
parent
6fa27370
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
genids.c
genids.c
+5
-0
No files found.
genids.c
View file @
75b827f8
...
@@ -135,6 +135,11 @@ int main(int n, char **v)
...
@@ -135,6 +135,11 @@ int main(int n, char **v)
get_line
(
in
,
&
name
,
&
value
);
get_line
(
in
,
&
name
,
&
value
);
if
(
name
==
NULL
)
break
;
if
(
name
==
NULL
)
break
;
printf
(
"name '%s' value '%s'
\n
"
,
name
,
value
);
printf
(
"name '%s' value '%s'
\n
"
,
name
,
value
);
if
(
isspace
(
value
[
strlen
(
value
)
-
1
]))
{
printf
(
"bad value '%s' (no space at the end please!)
\n
"
,
value
);
unlink
(
out_name
);
exit
(
1
);
}
if
(
!
strcmp
(
name
,
"ID"
))
{
if
(
!
strcmp
(
name
,
"ID"
))
{
if
(
!
new_unique_id
(
value
))
{
unlink
(
out_name
);
exit
(
1
);
}
if
(
!
new_unique_id
(
value
))
{
unlink
(
out_name
);
exit
(
1
);
}
fprintf
(
out
,
"#define T_%s T_ID(%d)
\n
"
,
value
,
n
);
fprintf
(
out
,
"#define T_%s T_ID(%d)
\n
"
,
value
,
n
);
...
...
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