[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.80 and 1.81

version 1.80, 2018/03/29 01:32:53 version 1.81, 2020/10/04 03:14:08
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.79 2017/08/30 09:40:30 ohara Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.80 2018/03/29 01:32:53 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 784  static void asir_executeFunction(int serial)
Line 784  static void asir_executeFunction(int serial)
 #endif  #endif
     searchf(noargsysf,func,&f);      searchf(noargsysf,func,&f);
     if ( !f )      if ( !f )
       gen_searchf_searchonly(func,&f);        gen_searchf_searchonly(func,&f,0);
     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 858  static void asir_executeFunctionSync(int serial)
Line 858  static void asir_executeFunctionSync(int serial)
 #endif  #endif
     searchf(noargsysf,func,&f);      searchf(noargsysf,func,&f);
     if ( !f )      if ( !f )
       gen_searchf_searchonly(func,&f);        gen_searchf_searchonly(func,&f,0);
     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.80  
changed lines
  Added in v.1.81

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