Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asn1c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
qwebaby3
asn1c
Commits
f9567e28
Commit
f9567e28
authored
20 years ago
by
Lev Walkin
Browse files
Options
Downloads
Patches
Plain Diff
backward-compatible
parent
ceea0662
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
asn1c/asn1c.c
+1
-4
1 addition, 4 deletions
asn1c/asn1c.c
with
1 addition
and
4 deletions
asn1c/asn1c.c
+
1
−
4
View file @
f9567e28
...
@@ -28,7 +28,7 @@ main(int ac, char **av) {
...
@@ -28,7 +28,7 @@ main(int ac, char **av) {
enum
asn1p_flags
asn1_parser_flags
=
A1P_NOFLAGS
;
enum
asn1p_flags
asn1_parser_flags
=
A1P_NOFLAGS
;
enum
asn1f_flags
asn1_fixer_flags
=
A1F_NOFLAGS
;
enum
asn1f_flags
asn1_fixer_flags
=
A1F_NOFLAGS
;
enum
asn1c_flags
asn1_compiler_flags
=
A1C_NOFLAGS
;
enum
asn1c_flags
asn1_compiler_flags
=
A1C_NOFLAGS
;
enum
asn1print_flags
asn1_print_flags
=
APF_NOFLAGS
;
enum
asn1print_flags
_e
asn1_print_flags
=
APF_NOFLAGS
;
int
print_arg__print_out
=
0
;
/* Don't compile, just print parsed */
int
print_arg__print_out
=
0
;
/* Don't compile, just print parsed */
int
print_arg__fix_n_print
=
0
;
/* Fix and print */
int
print_arg__fix_n_print
=
0
;
/* Fix and print */
int
warnings_as_errors
=
0
;
/* Treat warnings as errors */
int
warnings_as_errors
=
0
;
/* Treat warnings as errors */
...
@@ -64,9 +64,6 @@ main(int ac, char **av) {
...
@@ -64,9 +64,6 @@ main(int ac, char **av) {
char
*
known_type
=
optarg
+
18
;
char
*
known_type
=
optarg
+
18
;
ret
=
asn1f_make_known_external_type
(
known_type
);
ret
=
asn1f_make_known_external_type
(
known_type
);
assert
(
ret
==
0
||
errno
==
EEXIST
);
assert
(
ret
==
0
||
errno
==
EEXIST
);
}
else
if
(
strcmp
(
optarg
,
"undoc"
)
==
0
)
{
/* Enable undocumented operation */
asn1_print_flags
|=
APF_FULL_CONSTRAINTS
;
}
else
{
}
else
{
fprintf
(
stderr
,
"-f%s: Invalid argument
\n
"
,
optarg
);
fprintf
(
stderr
,
"-f%s: Invalid argument
\n
"
,
optarg
);
exit
(
EX_USAGE
);
exit
(
EX_USAGE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment