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

Diff for /OpenXM_contrib2/asir2000/io/tcpf.c between version 1.31 and 1.32

version 1.31, 2002/04/01 08:20:26 version 1.32, 2002/07/29 05:02:45
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/tcpf.c,v 1.30 2001/12/26 09:28:36 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/tcpf.c,v 1.31 2002/04/01 08:20:26 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 491  static int get_start_path(char *buf)
Line 491  static int get_start_path(char *buf)
                 return 1;                  return 1;
         }          }
   
           /* Windows98 */
           strcpy(buf,"c:\\windows\\command\\start.exe");
           cygwin_conv_to_full_posix_path(buf,name);
           if ( !access(name,X_OK) ) {
                   bslash2slash(buf);
                   strcpy(start_path,buf);
                   start_initialized  = 1;
                   return 1;
           }
   
         /* Windows2000 */          /* Windows2000 */
         strcpy(buf,"c:\\winnt\\system32\\start.exe");          strcpy(buf,"c:\\winnt\\system32\\start.exe");
         cygwin_conv_to_full_posix_path(buf,name);          cygwin_conv_to_full_posix_path(buf,name);
         if ( !access(name,X_OK) ) {          if ( !access(name,X_OK) ) {
                 bslash2slash(buf);                  bslash2slash(buf);
                 strcpy(start_path,buf);                  strcpy(start_path,buf);
                   start_initialized  = 1;
                 return 1;                  return 1;
         }          }
   
         /* Windows98 */          strcpy(buf,"c:\\winnt\\system32\\cmd.exe");
         strcpy(buf,"c:\\windows\\command\\start.exe");  
         cygwin_conv_to_full_posix_path(buf,name);          cygwin_conv_to_full_posix_path(buf,name);
         if ( !access(name,X_OK) ) {          if ( !access(name,X_OK) ) {
                 bslash2slash(buf);                  bslash2slash(buf);
                 strcpy(start_path,buf);                  sprintf(start_path,"%s /c start",buf);
                   strcpy(buf,start_path);
                   start_initialized  = 1;
                   return 1;
           }
   
           strcpy(buf,"c:\\windows\\system32\\cmd.exe");
           cygwin_conv_to_full_posix_path(buf,name);
           if ( !access(name,X_OK) ) {
                   bslash2slash(buf);
                   sprintf(start_path,"%s /c start",buf);
                   strcpy(buf,start_path);
                   start_initialized  = 1;
                 return 1;                  return 1;
         }          }
   

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32

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