From: Chris B. <buc...@us...> - 2011-04-28 21:48:31
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv15367 Modified Files: cimcClientSfcbLocal.c ChangeLog NEWS contributions.txt Log Message: [ 3202466 ] Single item on method param of array type rejected via Local Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.580 retrieving revision 1.581 diff -u -d -r1.580 -r1.581 --- NEWS 28 Apr 2011 19:54:15 -0000 1.580 +++ NEWS 28 Apr 2011 21:48:28 -0000 1.581 @@ -6,6 +6,7 @@ - 3261868 Enum CQL filter on NULL cause incorrect rsp - 3213591 Local intf client abort abnormally on enum filter syntax err - 3291646 Unused var in __NullEvaluate +- 3202466 Single item on method param of array type rejected via Local Changes in 1.3.11 ================= Index: cimcClientSfcbLocal.c =================================================================== RCS file: /cvsroot/sblim/sfcb/cimcClientSfcbLocal.c,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- cimcClientSfcbLocal.c 5 Apr 2011 21:02:53 -0000 1.39 +++ cimcClientSfcbLocal.c 28 Apr 2011 21:48:28 -0000 1.40 @@ -1186,7 +1186,7 @@ // expected incoming type is either string or string array // incoming array type must match expected array type - if ((xtype & CMPI_ARRAY) ^ (strctype & CMPI_ARRAY)) { + if (!(xtype & CMPI_ARRAY) && (strctype & CMPI_ARRAY)) { if (prc) CMSetStatus(prc, CMPI_RC_ERR_INVALID_PARAMETER); return newcval; } Index: contributions.txt =================================================================== RCS file: /cvsroot/sblim/sfcb/contributions.txt,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- contributions.txt 9 Mar 2011 00:40:20 -0000 1.61 +++ contributions.txt 28 Apr 2011 21:48:28 -0000 1.62 @@ -179,6 +179,7 @@ 11/08/2010 [ 3101148 ] SfcbLocal method parameter type conversion and validation 11/10/2010 [ 3101154 ] Daemon clients failed SfcbLocal connect due to permission 03/08/2011 [ 3202420 ] CDATA value in a string property is improperly XML escaped +04/28/2011 [ 3202466 ] Single item on method param of array type rejected via Local Josef Moellers -------------- Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.653 retrieving revision 1.654 diff -u -d -r1.653 -r1.654 --- ChangeLog 28 Apr 2011 19:54:15 -0000 1.653 +++ ChangeLog 28 Apr 2011 21:48:28 -0000 1.654 @@ -1,5 +1,9 @@ 2011-04-28 Chris Buccella <buc...@li...> + * cimcClientSfcbLocal.c: + [ 3202466 ] Single item on method param of array type rejected via Local + (patch by Chris Poblete) + * queryOperation.c: [ 3291646 ] Unused var in __NullEvaluate |