From: Robert W. <wrw...@us...> - 2008-02-14 22:49:18
|
Update of /cvsroot/linuxisns/iscsiClient/src In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5533/src Modified Files: comm.c parse.c Log Message: Fix compile warnings for 64bit, update iSNSdef to lastest protocol Index: comm.c =================================================================== RCS file: /cvsroot/linuxisns/iscsiClient/src/comm.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** comm.c 11 Dec 2006 18:01:08 -0000 1.3 --- comm.c 14 Feb 2008 22:49:13 -0000 1.4 *************** *** 484,488 **** /***********************************************************************/ int ! ESIListener (DWORD lparam) { char eid[256]; --- 484,488 ---- /***********************************************************************/ int ! ESIListener (LPVOID lparam) { char eid[256]; *************** *** 590,594 **** /***********************************************************************/ int ! TCPReceiveMain (DWORD lparam) { int e; --- 590,594 ---- /***********************************************************************/ int ! TCPReceiveMain (LPVOID lparam) { int e; Index: parse.c =================================================================== RCS file: /cvsroot/linuxisns/iscsiClient/src/parse.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** parse.c 2 Jan 2007 20:12:07 -0000 1.3 --- parse.c 14 Feb 2008 22:49:13 -0000 1.4 *************** *** 106,110 **** case ISNS_PROT_VER : return("Protocol Version Range"); case ISNS_ENTITY_PERIOD : return("Entity Period"); - case ISNS_ENTITY_SCN_BITMAP : return("Entity SCN Bitmap"); case ISNS_ENTITY_CERT : return("Entity Certificate"); case ISNS_PORTAL_IP : return("Portal IP-Address"); --- 106,109 ---- *************** *** 319,323 **** ntohl(p_attr->val.etype)?"Enabled":"Disabled"); break; - case ISNS_ENTITY_SCN_BITMAP : case ISNS_ENTITY_CERT : case ISNS_PORTAL_CERT : --- 318,321 ---- |