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

Diff for /OpenXM/src/oxc/oxc.c between version 1.13 and 1.16

version 1.13, 2004/12/01 17:42:46 version 1.16, 2016/04/01 18:12:39
Line 1 
Line 1 
 /* -*- mode: C -*- */  /* -*- mode: C -*- */
 /* $OpenXM: OpenXM/src/oxc/oxc.c,v 1.12 2003/05/07 04:00:30 ohara Exp $ */  /* $OpenXM: OpenXM/src/oxc/oxc.c,v 1.15 2005/10/12 10:37:24 takayama Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 193  int main(int argc, char *argv[])
Line 193  int main(int argc, char *argv[])
         }          }
   
     if (strlen(remote_host) == 0) {      if (strlen(remote_host) == 0) {
         pipe_read_info(&remote_host, &port, &password);          int porti;
           pipe_read_info(&remote_host, &porti, &password);
           port = (short)porti;
         port_s = malloc(32);          port_s = malloc(32);
         sprintf(port_s, "%d", port);          sprintf(port_s, "%d", port);
     }      }

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.16

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