[BACK]Return to ox.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_toolkit

Diff for /OpenXM/src/ox_toolkit/ox.c between version 1.10 and 1.11

version 1.10, 2000/01/20 15:38:12 version 1.11, 2000/02/04 08:01:30
Line 1 
Line 1 
 /* -*- mode: C; coding: euc-japan -*- */  /* -*- mode: C; coding: euc-japan -*- */
 /* $OpenXM: OpenXM/src/ox_toolkit/ox.c,v 1.9 2000/01/20 08:46:44 ohara Exp $ */  /* $OpenXM: OpenXM/src/ox_toolkit/ox.c,v 1.10 2000/01/20 15:38:12 ohara Exp $ */
   
 /*  /*
    This module includes functions for sending/receiveng CMO's.     This module includes functions for sending/receiveng CMO's.
Line 82  static char*        new_string_set_cmo_int32(int integ
Line 82  static char*        new_string_set_cmo_int32(int integ
 static char*        new_string_set_cmo_list(cmo_list *c);  static char*        new_string_set_cmo_list(cmo_list *c);
 static char*        new_string_set_cmo_zz(cmo_zz *c);  static char*        new_string_set_cmo_zz(cmo_zz *c);
   
   int ssh_ox_server(char *, char *, char *, short, short);
   
 int current_fd = 0;  int current_fd = 0;
 int set_current_fd(int fd)  int set_current_fd(int fd)
 {  {
Line 801  ox_file_t ox_start(char* host, char* ctl_prog, char* d
Line 803  ox_file_t ox_start(char* host, char* ctl_prog, char* d
         char *oxlog;          char *oxlog;
   
         /* not overwrite */          /* not overwrite */
   #if 0
         setenv("OpenXM_HOME", "/usr/local/OpenXM", 0);          setenv("OpenXM_HOME", "/usr/local/OpenXM", 0);
   #endif
           if (getenv("OpenXM_HOME") == NULL) {
                   putenv("OpenXM_HOME=/usr/local/OpenXM");
           }
   
         oxlog    = concat_openxm_home_bin("oxlog");          oxlog    = concat_openxm_home_bin("oxlog");
         ctl_prog = concat_openxm_home_bin(ctl_prog);          ctl_prog = concat_openxm_home_bin(ctl_prog);

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

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