Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
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
Libraries
asn1c
Commits
223000ab
Commit
223000ab
authored
Sep 13, 2006
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
2b694fbd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
asn1c/tests/check-assembly.sh
asn1c/tests/check-assembly.sh
+1
-0
libasn1fix/check_fixer.c
libasn1fix/check_fixer.c
+2
-2
skeletons/GeneralizedTime.c
skeletons/GeneralizedTime.c
+6
-1
skeletons/UTCTime.c
skeletons/UTCTime.c
+6
-1
No files found.
asn1c/tests/check-assembly.sh
View file @
223000ab
...
...
@@ -54,6 +54,7 @@ check-executable: compiled-module *.c*
compiled-module:
${
asn_module
}
../../asn1c
../../asn1c -S ../../../skeletons -Wdebug-compiler
\\
${
AFLAGS
}
${
asn_module
}
rm -f converter-sample.c
@touch compiled-module
check-succeeded: check-executable
...
...
libasn1fix/check_fixer.c
View file @
223000ab
...
...
@@ -189,7 +189,7 @@ check(const char *fname,
mod
->
_tags
|=
MT_STANDARD_MODULE
;
TQ_ADD
(
&
(
asn
->
modules
),
mod
,
mod_next
);
}
asn1p_
fre
e
(
std_asn
);
asn1p_
delet
e
(
std_asn
);
}
}
...
...
@@ -236,7 +236,7 @@ check(const char *fname,
/*
* Destroy the asn.
*/
asn1p_
fre
e
(
asn
);
asn1p_
delet
e
(
asn
);
return
r_value
;
}
...
...
skeletons/GeneralizedTime.c
View file @
223000ab
...
...
@@ -6,9 +6,14 @@
#define _REENTRANT
/* for Sun */
#include <asn_internal.h>
#include <GeneralizedTime.h>
#include <time.h>
#include <errno.h>
#ifdef __CYGWIN__
#include "/usr/include/time.h"
#else
#include <time.h>
#endif
/* __CYGWIN__ */
#if defined(WIN32)
#pragma message( "PLEASE STOP AND READ!")
#pragma message( " localtime_r is implemented via localtime(), which may be not thread-safe.")
...
...
skeletons/UTCTime.c
View file @
223000ab
...
...
@@ -5,9 +5,14 @@
#include <asn_internal.h>
#include <UTCTime.h>
#include <GeneralizedTime.h>
#include <time.h>
#include <errno.h>
#ifdef __CYGWIN__
#include "/usr/include/time.h"
#else
#include <time.h>
#endif
/* __CYGWIN__ */
#ifndef __ASN_INTERNAL_TEST_MODE__
/*
...
...
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