*** empty log message ***

This commit is contained in:
Lev Walkin 2006-09-13 00:21:58 +00:00
parent 2b694fbd5e
commit 223000ab18
4 changed files with 15 additions and 4 deletions

View File

@ -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

View File

@ -189,7 +189,7 @@ check(const char *fname,
mod->_tags |= MT_STANDARD_MODULE;
TQ_ADD(&(asn->modules), mod, mod_next);
}
asn1p_free(std_asn);
asn1p_delete(std_asn);
}
}
@ -236,7 +236,7 @@ check(const char *fname,
/*
* Destroy the asn.
*/
asn1p_free(asn);
asn1p_delete(asn);
return r_value;
}

View File

@ -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.")

View File

@ -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__
/*