Update of /cvsroot/sblim/sfcb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21437
Modified Files:
instance.c
Log Message:
correction to fix for 1229418
Index: instance.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/instance.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- instance.c 8 Jul 2005 22:19:50 -0000 1.9
+++ instance.c 12 Jul 2005 22:46:55 -0000 1.10
@@ -237,9 +237,7 @@
data.state=CMPI_nullValue;
}
data.type=CMPI_dateTime;
- }
-
-} else if (type == CMPI_sint64 || type == CMPI_uint64 || type == CMPI_real64) {
+ } else if (type == CMPI_sint64 || type == CMPI_uint64 || type == CMPI_real64) {
data.value = *value;
} else {
data.value.Int = value->Int;
|