[BACK]Return to ox_asir.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / io

Diff for /OpenXM_contrib2/asir2000/io/ox_asir.c between version 1.68 and 1.71

version 1.68, 2010/12/12 07:38:00 version 1.71, 2013/06/13 18:42:11
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.67 2010/04/23 04:44:52 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.70 2011/01/13 08:00:07 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 646  void asir_pops()
Line 646  void asir_pops()
 void asir_setName(unsigned int serial)  void asir_setName(unsigned int serial)
 {  {
         char *name;          char *name;
         int l,n;          size_t l,n;
         char *dummy = "=0;";          char *dummy = "=0;";
         SNODE snode;          SNODE snode;
         ERR err;          ERR err;
Line 668  void asir_setName(unsigned int serial)
Line 668  void asir_setName(unsigned int serial)
 void asir_evalName(unsigned int serial)  void asir_evalName(unsigned int serial)
 {  {
         char *name;          char *name;
         int l,n;          size_t l,n;
         SNODE snode;          SNODE snode;
         ERR err;          ERR err;
         pointer val;          pointer val;
Line 793  static void asir_executeFunction(int serial)
Line 793  static void asir_executeFunction(int serial)
 #endif  #endif
                 searchf(noargsysf,func,&f);                  searchf(noargsysf,func,&f);
                 if ( !f )                  if ( !f )
                         searchf(sysf,func,&f);                          gen_searchf_searchonly(func,&f);
                 if ( !f )  
                         searchf(ubinf,func,&f);  
                 if ( !f )  
                         searchf(usrf,func,&f);  
                 if ( !f ) {                  if ( !f ) {
                         sprintf(buf,"executeFunction : the function %s not found",func);                          sprintf(buf,"executeFunction : the function %s not found",func);
                         goto error;                          goto error;
Line 871  static void asir_executeFunctionSync(int serial)
Line 867  static void asir_executeFunctionSync(int serial)
 #endif  #endif
                 searchf(noargsysf,func,&f);                  searchf(noargsysf,func,&f);
                 if ( !f )                  if ( !f )
                         searchf(sysf,func,&f);                          gen_searchf_searchonly(func,&f);
                 if ( !f )  
                         searchf(ubinf,func,&f);  
                 if ( !f )  
                         searchf(usrf,func,&f);  
                 if ( !f ) {                  if ( !f ) {
                         sprintf(buf,"executeFunction : the function %s not found",func);                          sprintf(buf,"executeFunction : the function %s not found",func);
                         goto error;                          goto error;

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.71

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>