You can subscribe to this list here.
| 2005 |
Jan
|
Feb
(1) |
Mar
(45) |
Apr
(150) |
May
(145) |
Jun
(150) |
Jul
(79) |
Aug
(313) |
Sep
(160) |
Oct
(309) |
Nov
(115) |
Dec
(60) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(160) |
Feb
(144) |
Mar
(127) |
Apr
(48) |
May
(102) |
Jun
(54) |
Jul
(245) |
Aug
(94) |
Sep
(152) |
Oct
(162) |
Nov
(166) |
Dec
(740) |
| 2007 |
Jan
(752) |
Feb
(437) |
Mar
(328) |
Apr
(373) |
May
(569) |
Jun
(399) |
Jul
(369) |
Aug
(627) |
Sep
(100) |
Oct
(306) |
Nov
(166) |
Dec
(282) |
| 2008 |
Jan
(68) |
Feb
(145) |
Mar
(180) |
Apr
(160) |
May
(277) |
Jun
(229) |
Jul
(1188) |
Aug
(51) |
Sep
(97) |
Oct
(99) |
Nov
(95) |
Dec
(170) |
| 2009 |
Jan
(39) |
Feb
(73) |
Mar
(120) |
Apr
(121) |
May
(104) |
Jun
(262) |
Jul
(57) |
Aug
(171) |
Sep
(131) |
Oct
(88) |
Nov
(64) |
Dec
(83) |
| 2010 |
Jan
(55) |
Feb
(67) |
Mar
(124) |
Apr
(64) |
May
(130) |
Jun
(75) |
Jul
(164) |
Aug
(64) |
Sep
(44) |
Oct
(17) |
Nov
(43) |
Dec
(31) |
| 2011 |
Jan
(21) |
Feb
(10) |
Mar
(43) |
Apr
(46) |
May
(52) |
Jun
(71) |
Jul
(7) |
Aug
(16) |
Sep
(51) |
Oct
(14) |
Nov
(33) |
Dec
(15) |
| 2012 |
Jan
(12) |
Feb
(61) |
Mar
(129) |
Apr
(76) |
May
(70) |
Jun
(52) |
Jul
(29) |
Aug
(41) |
Sep
(32) |
Oct
(23) |
Nov
(38) |
Dec
(26) |
| 2013 |
Jan
(35) |
Feb
(37) |
Mar
(51) |
Apr
(15) |
May
(52) |
Jun
(15) |
Jul
(23) |
Aug
(21) |
Sep
(46) |
Oct
(69) |
Nov
(57) |
Dec
(26) |
| 2014 |
Jan
(5) |
Feb
(13) |
Mar
(17) |
Apr
(1) |
May
(5) |
Jun
|
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
(16) |
Nov
(8) |
Dec
(4) |
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(4) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
|
From: Dave B. <bla...@us...> - 2010-12-06 19:43:10
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/http In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9388/src/org/sblim/cimclient/internal/http Modified Files: HttpSocketFactory.java Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: HttpSocketFactory.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/http/HttpSocketFactory.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- HttpSocketFactory.java 16 Aug 2010 17:36:24 -0000 1.18 +++ HttpSocketFactory.java 6 Dec 2010 19:43:02 -0000 1.19 @@ -31,6 +31,7 @@ * 2531371 2009-02-10 raman_arora Upgrade client to JDK 1.5 (Phase 2) * 3001345 2010-05-18 blaschke-oss File handle leaks in HttpSocketFactory and LogAndTraceBroker * 3027618 2010-07-14 blaschke-oss Close files/readers in finally blocks + * 3111718 2010-11-18 blaschke-oss org.sblim.cimclient SSL Code is using the wrong SSL Property */ package org.sblim.cimclient.internal.http; @@ -160,10 +161,9 @@ try { Class<?> providerClass = Class.forName(provider); securityProvider = (java.security.Provider) providerClass.newInstance(); - if (Security.getProvider(securityProvider.getName()) != null) { - Security.removeProvider(securityProvider.getName()); + if (Security.getProvider(securityProvider.getName()) == null) { + Security.addProvider(securityProvider); } - Security.insertProviderAt(securityProvider, 1); } catch (Exception e) { logger.trace(Level.FINER, "Exception while loading JSSE provider", e); logger.message(Messages.SSL_JSSE_PROVIDER_LOAD_FAILED, provider); |
|
From: Dave B. <bla...@us...> - 2010-12-06 19:43:10
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9388/src/org/sblim/cimclient/internal/util Modified Files: WBEMConfiguration.java Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: WBEMConfiguration.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util/WBEMConfiguration.java,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- WBEMConfiguration.java 9 Nov 2010 22:49:15 -0000 1.32 +++ WBEMConfiguration.java 6 Dec 2010 19:43:02 -0000 1.33 @@ -30,6 +30,7 @@ * 2970881 2010-03-15 blaschke-oss Add property to control EmbeddedObject case * 3046073 2010-09-07 blaschke-oss Performance hit due to socket conn. creation with timeout * 3078280 2010-09-29 blaschke-oss Fix for a null pointer exception in 1.3.9.1 + * 3111718 2010-11-18 blaschke-oss org.sblim.cimclient SSL Code is using the wrong SSL Property */ package org.sblim.cimclient.internal.util; @@ -621,9 +622,8 @@ */ public String getSslSocketProvider() { Provider[] providers = Security.getProviders("SSLContext.SSL"); - return getSecurityProperty(WBEMConfigurationProperties.SSL_SOCKET_PROVIDER, - providers != null && providers.length > 0 ? providers[0].getClass().getName() - : null); + return getProperty(WBEMConfigurationProperties.SSL_SOCKET_PROVIDER, providers != null + && providers.length > 0 ? providers[0].getClass().getName() : null); } /** @@ -633,7 +633,7 @@ */ public String getSslServerSocketProvider() { Provider[] providers = Security.getProviders("SSLContext.SSL"); - return getSecurityProperty(WBEMConfigurationProperties.SSL_SERVER_SOCKET_PROVIDER, + return getProperty(WBEMConfigurationProperties.SSL_SERVER_SOCKET_PROVIDER, providers != null && providers.length > 0 ? providers[0].getClass().getName() : null); } |
|
From: Dave B. <bla...@us...> - 2010-12-06 19:43:10
|
Update of /cvsroot/sblim/jsr48-client In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9388 Modified Files: NEWS sblim-cim-client2.properties Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: NEWS =================================================================== RCS file: /cvsroot/sblim/jsr48-client/NEWS,v retrieving revision 1.201 retrieving revision 1.202 diff -u -d -r1.201 -r1.202 --- NEWS 6 Dec 2010 19:22:30 -0000 1.201 +++ NEWS 6 Dec 2010 19:43:02 -0000 1.202 @@ -1,5 +1,6 @@ Changes in HEAD ================ +3111718 org.sblim.cimclient SSL Code is using the wrong SSL Property 3109824 Move Java link from Sun to Oracle 3078280 Fix for a null pointer exception in 1.3.9.1 3062747 SblimCIMClient does not log all CIM-XML responces. Index: sblim-cim-client2.properties =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.properties,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- sblim-cim-client2.properties 15 Sep 2010 11:21:26 -0000 1.15 +++ sblim-cim-client2.properties 6 Dec 2010 19:43:02 -0000 1.16 @@ -402,7 +402,7 @@ # Recognition: On next SSL connection # Default: Security.getProviders("SSLContext.SSL") # -#ssl.SocketFactory.provider= +#sblim.wbem.sslSocketProvider= # The provider to use for creation of SSL server sockets. # @@ -412,7 +412,7 @@ # Recognition: On next SSL connection # Default: Security.getProviders("SSLContext.SSL") # -#ssl.ServerSocketFactory.provider= +#sblim.wbem.sslServerSocketProvider= # The protocol used for SSLContext.getInstance(String protocol). For IBMJSSE2 provider it can # be "SSL_TLS". |
|
From: Dave B. <bla...@us...> - 2010-12-06 19:22:38
|
Update of /cvsroot/sblim/jsr48-client In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv6083 Modified Files: build.xml NEWS Log Message: 3109824 - Move Java link from Sun to Oracle Index: NEWS =================================================================== RCS file: /cvsroot/sblim/jsr48-client/NEWS,v retrieving revision 1.200 retrieving revision 1.201 diff -u -d -r1.200 -r1.201 --- NEWS 9 Nov 2010 22:49:15 -0000 1.200 +++ NEWS 6 Dec 2010 19:22:30 -0000 1.201 @@ -1,5 +1,6 @@ Changes in HEAD ================ +3109824 Move Java link from Sun to Oracle 3078280 Fix for a null pointer exception in 1.3.9.1 3062747 SblimCIMClient does not log all CIM-XML responces. Index: build.xml =================================================================== RCS file: /cvsroot/sblim/jsr48-client/build.xml,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- build.xml 11 Mar 2010 15:15:30 -0000 1.41 +++ build.xml 6 Dec 2010 19:22:30 -0000 1.42 @@ -204,7 +204,7 @@ <group title="Packages containing the internal implementation" packages="org.sblim.cimclient.internal*:org.sblim.slp.internal*"/> - <link href="http://java.sun.com/j2se/1.5.0/docs/api/"/> + <link href="http://download.oracle.com/javase/1.5.0/docs/api/"/> <doctitle><![CDATA[<h1>SBLIM CIM Client for Java - ${Manifest.version} - Public API Specification</h1>]]></doctitle> <bottom><![CDATA[<i>Copyright © 2005, 2010 IBM Corporation. All Rights Reserved.</i>]]></bottom> </javadoc> |
|
From: Chris B. <buc...@us...> - 2010-11-29 23:10:50
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20563 Modified Files: configure.ac Log Message: bump version to 1.3.11preview Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/sfcb/configure.ac,v retrieving revision 1.114 retrieving revision 1.115 diff -u -d -r1.114 -r1.115 --- configure.ac 29 Nov 2010 21:02:06 -0000 1.114 +++ configure.ac 29 Nov 2010 23:10:42 -0000 1.115 @@ -22,7 +22,7 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(Small Footprint CIM Broker, 1.3.10, sbl...@li..., sblim-sfcb) +AC_INIT(Small Footprint CIM Broker, 1.3.11preview, sbl...@li..., sblim-sfcb) AC_CONFIG_SRCDIR([providerDrv.c]) #disable "seems to ignore the --datarootdir setting" warnings |
|
From: Chris B. <buc...@us...> - 2010-11-29 21:20:58
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via feb5261516c45b254b534e8bc13d526067ae1aa4 (commit)
via 57d5f8312179f326c1b81476f4cae1fc04f02607 (commit)
from a8cea3322981959c7601af5a8adf0a2e99ce0df1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit feb5261516c45b254b534e8bc13d526067ae1aa4
Merge: 57d5f8312179f326c1b81476f4cae1fc04f02607 a8cea3322981959c7601af5a8adf0a2e99ce0df1
Author: buccella <buc...@li...>
Date: Mon Nov 29 16:20:50 2010 -0500
Merge branch 'master' of ssh://sblim.git.sourceforge.net/gitroot/sblim/sfcb
Conflicts:
ChangeLog
commit 57d5f8312179f326c1b81476f4cae1fc04f02607
Author: buccella <buc...@li...>
Date: Mon Nov 29 16:20:06 2010 -0500
[ 3122725 ] Cleanup warnings in queryLexer and test provider
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
NEWS | 2 +-
cimXmlGen.c | 3 +++
queryLexer.l | 1 +
test/TestProviders/cmpiTestMethodProvider.c | 1 +
5 files changed, 12 insertions(+), 1 deletions(-)
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|
|
From: Chris B. <buc...@us...> - 2010-11-29 21:15:17
|
Update of /cvsroot/sblim/sfcb/test/TestProviders In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv29933/test/TestProviders Modified Files: cmpiTestMethodProvider.c Log Message: [ 3122725 ] Cleanup warnings in queryLexer and test provider Index: cmpiTestMethodProvider.c =================================================================== RCS file: /cvsroot/sblim/sfcb/test/TestProviders/cmpiTestMethodProvider.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- cmpiTestMethodProvider.c 20 Aug 2010 21:47:06 -0000 1.3 +++ cmpiTestMethodProvider.c 29 Nov 2010 21:15:09 -0000 1.4 @@ -1,4 +1,5 @@ #include <string.h> +#include <stdio.h> #include "cmpidt.h" #include "cmpift.h" #include "cmpimacs.h" |
|
From: Chris B. <buc...@us...> - 2010-11-29 21:15:17
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv29933 Modified Files: queryLexer.l ChangeLog NEWS Log Message: [ 3122725 ] Cleanup warnings in queryLexer and test provider Index: queryLexer.l =================================================================== RCS file: /cvsroot/sblim/sfcb/queryLexer.l,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- queryLexer.l 19 Mar 2009 23:31:49 -0000 1.7 +++ queryLexer.l 29 Nov 2010 21:15:09 -0000 1.8 @@ -71,6 +71,7 @@ IDENT_CHAR [A-Za-z_] %option nounput +%option noinput %% Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.565 retrieving revision 1.566 diff -u -d -r1.565 -r1.566 --- NEWS 29 Nov 2010 20:15:54 -0000 1.565 +++ NEWS 29 Nov 2010 21:15:09 -0000 1.566 @@ -11,6 +11,7 @@ - 3097310 localConnect in cimcClientSfcbLocal.c accesses free'd memory - 3087577 Provider MI accessed before finished initializing - 3109469 Potential Buffer Overflow in msgqueue.c:localConnectServer() +- 3122725 Cleanup warnings in queryLexer and test provider Changes in 1.3.9 ================ Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.638 retrieving revision 1.639 diff -u -d -r1.638 -r1.639 --- ChangeLog 29 Nov 2010 20:15:54 -0000 1.638 +++ ChangeLog 29 Nov 2010 21:15:09 -0000 1.639 @@ -1,3 +1,8 @@ +2010-11-29 Chris Buccella <buc...@li...> + + * queryLexer.l, test/TestProviders/cmpiTestMethodProvider.c, + [ 3122725 ] Cleanup warnings in queryLexer and test provider + 2010-11-17 Chris Buccella <buc...@li...> * msgqueue.c: |
|
From: Chris B. <buc...@us...> - 2010-11-29 21:02:15
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv26653 Modified Files: configure.ac Log Message: bump version to 1.3.10 Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/sfcb/configure.ac,v retrieving revision 1.113 retrieving revision 1.114 diff -u -d -r1.113 -r1.114 --- configure.ac 18 Oct 2010 22:37:31 -0000 1.113 +++ configure.ac 29 Nov 2010 21:02:06 -0000 1.114 @@ -22,7 +22,7 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(Small Footprint CIM Broker, 1.3.10preview, sbl...@li..., sblim-sfcb) +AC_INIT(Small Footprint CIM Broker, 1.3.10, sbl...@li..., sblim-sfcb) AC_CONFIG_SRCDIR([providerDrv.c]) #disable "seems to ignore the --datarootdir setting" warnings |
|
From: Chris B. <buc...@us...> - 2010-11-29 20:16:03
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv19030 Modified Files: mofpp.c ChangeLog NEWS Log Message: Undo 3054618 fix; not ready for release Index: mofpp.c =================================================================== RCS file: /cvsroot/sblim/sfcb/mofpp.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- mofpp.c 18 Nov 2010 23:14:30 -0000 1.7 +++ mofpp.c 29 Nov 2010 20:15:54 -0000 1.8 @@ -70,11 +70,10 @@ void processFile(char *fn, FILE *in, FILE *out) { - char *s,*e,*es,rec[10000],*ifn=NULL; + char *s,*e,rec[10000],*ifn=NULL; FILE *incFile; int comment=0; int nl=0; - int qs=0; while (fgets(rec, sizeof(rec), in)) { nl++; @@ -109,42 +108,28 @@ } } - while ((*s == ' ') || (*s == '\t')) { - s++; - } - es = s; - qs = 0; - if (*s == '"') { - qs = 1; - /* find end of the string */ - es++; - while ((s = strstr(es, "\""))) { - es = s+1; /* end of quoted string */ - } - } - - while ((s = strstr(es, "/"))) { - if (*(s+1) == '/') { - if ((e = strstr(s+2,"\r\n"))) { - strcpy(s,e+2); - } else if ((e = strstr(s+2,"\n"))) { - strcpy(s,e+qs); - } else { - *s = 0; - comment = 1; - break; - } - } else if (*(s+1) == '*') { - if ((e = strstr(s+2,"*/"))) { - strcpy(s,e+2); - } else { - *s = 0; - comment = 2; - break; - } - } else { - s++; - } + while ((s = strstr(s,"/"))) { + if (*(s+1) == '/') { + if ((e = strstr(s+2,"\r\n"))) { + strcpy(s,e+2); + } else if ((e = strstr(s+2,"\n"))) { + strcpy(s,e+1); + } else { + *s = 0; + comment = 1; + break; + } + } else if (*(s+1) == '*') { + if ((e = strstr(s+2,"*/"))) { + strcpy(s,e+2); + } else { + *s = 0; + comment = 2; + break; + } + } else { + s++; + } } fprintf(out,"%s",rec); Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.564 retrieving revision 1.565 diff -u -d -r1.564 -r1.565 --- NEWS 18 Nov 2010 23:14:30 -0000 1.564 +++ NEWS 29 Nov 2010 20:15:54 -0000 1.565 @@ -11,7 +11,6 @@ - 3097310 localConnect in cimcClientSfcbLocal.c accesses free'd memory - 3087577 Provider MI accessed before finished initializing - 3109469 Potential Buffer Overflow in msgqueue.c:localConnectServer() -- 3054618 mofpp is overaggressive when detecting comments Changes in 1.3.9 ================ Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.637 retrieving revision 1.638 diff -u -d -r1.637 -r1.638 --- ChangeLog 18 Nov 2010 23:14:30 -0000 1.637 +++ ChangeLog 29 Nov 2010 20:15:54 -0000 1.638 @@ -1,8 +1,3 @@ -2010-11-18 Chris Buccella <buc...@li...> - - * mofpp.c: - [ 3054618 ] mofpp is overaggressive when detecting comments - 2010-11-17 Chris Buccella <buc...@li...> * msgqueue.c: |
|
From: Dave B. <bla...@us...> - 2010-11-19 04:00:53
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20609/src/org/sblim/cimclient/internal/util Modified Files: Tag: Experimental WBEMConfiguration.java Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: WBEMConfiguration.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util/WBEMConfiguration.java,v retrieving revision 1.17.2.18 retrieving revision 1.17.2.19 diff -u -d -r1.17.2.18 -r1.17.2.19 --- WBEMConfiguration.java 29 Sep 2010 22:26:30 -0000 1.17.2.18 +++ WBEMConfiguration.java 19 Nov 2010 04:00:42 -0000 1.17.2.19 @@ -30,6 +30,7 @@ * 2970881 2010-03-15 blaschke-oss Add property to control EmbeddedObject case * 3046073 2010-09-07 blaschke-oss Performance hit due to socket conn. creation with timeout * 3078280 2010-09-29 blaschke-oss Fix for a null pointer exception in 1.3.9.1 + * 3111718 2010-11-18 blaschke-oss org.sblim.cimclient SSL Code is using the wrong SSL Property */ package org.sblim.cimclient.internal.util; @@ -621,9 +622,8 @@ */ public String getSslSocketProvider() { Provider[] providers = Security.getProviders("SSLContext.SSL"); - return getSecurityProperty(WBEMConfigurationProperties.SSL_SOCKET_PROVIDER, - providers != null && providers.length > 0 ? providers[0].getClass().getName() - : null); + return getProperty(WBEMConfigurationProperties.SSL_SOCKET_PROVIDER, providers != null + && providers.length > 0 ? providers[0].getClass().getName() : null); } /** @@ -633,7 +633,7 @@ */ public String getSslServerSocketProvider() { Provider[] providers = Security.getProviders("SSLContext.SSL"); - return getSecurityProperty(WBEMConfigurationProperties.SSL_SERVER_SOCKET_PROVIDER, + return getProperty(WBEMConfigurationProperties.SSL_SERVER_SOCKET_PROVIDER, providers != null && providers.length > 0 ? providers[0].getClass().getName() : null); } |
|
From: Dave B. <bla...@us...> - 2010-11-19 04:00:51
|
Update of /cvsroot/sblim/jsr48-client In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20609 Modified Files: Tag: Experimental sblim-cim-client2.properties Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: sblim-cim-client2.properties =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.properties,v retrieving revision 1.1.2.16 retrieving revision 1.1.2.17 diff -u -d -r1.1.2.16 -r1.1.2.17 --- sblim-cim-client2.properties 8 Sep 2010 19:03:57 -0000 1.1.2.16 +++ sblim-cim-client2.properties 19 Nov 2010 04:00:43 -0000 1.1.2.17 @@ -402,7 +402,7 @@ # Recognition: On next SSL connection # Default: Security.getProviders("SSLContext.SSL") # -#ssl.SocketFactory.provider= +#sblim.wbem.sslSocketProvider= # The provider to use for creation of SSL server sockets. # @@ -412,7 +412,7 @@ # Recognition: On next SSL connection # Default: Security.getProviders("SSLContext.SSL") # -#ssl.ServerSocketFactory.provider= +#sblim.wbem.sslServerSocketProvider= # The protocol used for SSLContext.getInstance(String protocol). For IBMJSSE2 provider it can # be "SSL_TLS". |
|
From: Dave B. <bla...@us...> - 2010-11-19 04:00:51
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20609/src/org/sblim/cimclient Modified Files: Tag: Experimental WBEMConfigurationProperties.java Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: WBEMConfigurationProperties.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMConfigurationProperties.java,v retrieving revision 1.17.2.17 retrieving revision 1.17.2.18 diff -u -d -r1.17.2.17 -r1.17.2.18 --- WBEMConfigurationProperties.java 8 Sep 2010 19:03:57 -0000 1.17.2.17 +++ WBEMConfigurationProperties.java 19 Nov 2010 04:00:43 -0000 1.17.2.18 @@ -26,6 +26,7 @@ * 2957387 2010-03-03 blaschke-oss EmbededObject XML attribute must not be all uppercases * 2970881 2010-03-15 blaschke-oss Add property to control EmbeddedObject case * 3046073 2010-09-07 blaschke-oss Performance hit due to socket conn. creation with timeout + * 3111718 2010-11-18 blaschke-oss org.sblim.cimclient SSL Code is using the wrong SSL Property */ package org.sblim.cimclient; @@ -407,7 +408,7 @@ * Recognition: <code>On next SSL connection</code><br /> * Default: <code>Security.getProviders("SSLContext.SSL")</code><br /> */ - public static final String SSL_SOCKET_PROVIDER = "ssl.SocketFactory.provider"; + public static final String SSL_SOCKET_PROVIDER = "sblim.wbem.sslSocketProvider"; /** * The provider to use for creation of SSL server sockets.<br /> @@ -419,7 +420,7 @@ * Recognition: <code>On next SSL connection</code><br /> * Default: <code>Security.getProviders("SSLContext.SSL")</code><br /> */ - public static final String SSL_SERVER_SOCKET_PROVIDER = "ssl.ServerSocketFactory.provider"; + public static final String SSL_SERVER_SOCKET_PROVIDER = "sblim.wbem.sslServerSocketProvider"; /** * The protocol used for SSLContext.getInstance(String protocol). For |
|
From: Dave B. <bla...@us...> - 2010-11-19 04:00:51
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/http In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20609/src/org/sblim/cimclient/internal/http Modified Files: Tag: Experimental HttpSocketFactory.java Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: HttpSocketFactory.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/http/HttpSocketFactory.java,v retrieving revision 1.8.2.12 retrieving revision 1.8.2.13 diff -u -d -r1.8.2.12 -r1.8.2.13 --- HttpSocketFactory.java 14 Jul 2010 18:40:49 -0000 1.8.2.12 +++ HttpSocketFactory.java 19 Nov 2010 04:00:43 -0000 1.8.2.13 @@ -31,6 +31,7 @@ * 2531371 2009-02-10 raman_arora Upgrade client to JDK 1.5 (Phase 2) * 3001345 2010-05-18 blaschke-oss File handle leaks in HttpSocketFactory and LogAndTraceBroker * 3027618 2010-07-14 blaschke-oss Close files/readers in finally blocks + * 3111718 2010-11-18 blaschke-oss org.sblim.cimclient SSL Code is using the wrong SSL Property */ package org.sblim.cimclient.internal.http; @@ -160,10 +161,9 @@ try { Class<?> providerClass = Class.forName(provider); securityProvider = (java.security.Provider) providerClass.newInstance(); - if (Security.getProvider(securityProvider.getName()) != null) { - Security.removeProvider(securityProvider.getName()); + if (Security.getProvider(securityProvider.getName()) == null) { + Security.addProvider(securityProvider); } - Security.insertProviderAt(securityProvider, 1); } catch (Exception e) { logger.trace(Level.FINER, "Exception while loading JSSE provider", e); logger.message(Messages.SSL_JSSE_PROVIDER_LOAD_FAILED, provider); |
|
From: Michael Chase-S. <mc...@us...> - 2010-11-18 23:48:07
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via a8cea3322981959c7601af5a8adf0a2e99ce0df1 (commit)
via 126bd2b46329f1b1c20f25ba2a0870cf58deecea (commit)
via 07914c6ac970f4677760d9bf8e6557e5159de24f (commit)
via ffc4f4ff9fa40f64392395c7bd33103cad5d35d9 (commit)
via a0c808333bd4fda2664035b13ac28fee645a5837 (commit)
from ac350c76d0d78c937c2f5b1d1a69d1b7e466f27e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a8cea3322981959c7601af5a8adf0a2e99ce0df1
Author: Michael Chase-Salerno <br...@li...>
Date: Thu Nov 18 18:47:00 2010 -0500
[3095225] Implement Simple REST Requests
commit 126bd2b46329f1b1c20f25ba2a0870cf58deecea
Merge: ac350c76d0d78c937c2f5b1d1a69d1b7e466f27e 07914c6ac970f4677760d9bf8e6557e5159de24f
Author: Michael Chase-Salerno <br...@li...>
Date: Thu Nov 18 18:42:49 2010 -0500
Merge branch 'rest'
commit 07914c6ac970f4677760d9bf8e6557e5159de24f
Author: Michael Chase-Salerno <br...@li...>
Date: Thu Nov 18 18:40:34 2010 -0500
3095225 Implement Simple REST Requests
GetClass (as a simple request)
commit ffc4f4ff9fa40f64392395c7bd33103cad5d35d9
Author: Michael Chase-Salerno <br...@li...>
Date: Thu Nov 18 17:56:49 2010 -0500
3095225 Implement Simple REST Requests
Interim test for GetClass
commit a0c808333bd4fda2664035b13ac28fee645a5837
Author: Michael Chase-Salerno <br...@li...>
Date: Thu Nov 18 17:52:56 2010 -0500
3095225 Implement Simple REST Requests
GetClass (as a separate function)
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 ++
cimRsRequest.c | 76 +++++++++++---------
test/cimrstest/gc_Linux_OperatingSystemInterim.GET | 1 +
.../gc_Linux_OperatingSystemInterim.lines | 59 +++++++++++++++
4 files changed, 108 insertions(+), 33 deletions(-)
create mode 100644 test/cimrstest/gc_Linux_OperatingSystemInterim.GET
create mode 100644 test/cimrstest/gc_Linux_OperatingSystemInterim.lines
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|
|
From: Chris B. <buc...@us...> - 2010-11-18 23:14:41
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7546 Modified Files: mofpp.c ChangeLog NEWS Log Message: [ 3054618 ] mofpp is overaggressive when detecting comments Index: mofpp.c =================================================================== RCS file: /cvsroot/sblim/sfcb/mofpp.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- mofpp.c 8 Sep 2009 09:05:08 -0000 1.6 +++ mofpp.c 18 Nov 2010 23:14:30 -0000 1.7 @@ -70,10 +70,11 @@ void processFile(char *fn, FILE *in, FILE *out) { - char *s,*e,rec[10000],*ifn=NULL; + char *s,*e,*es,rec[10000],*ifn=NULL; FILE *incFile; int comment=0; int nl=0; + int qs=0; while (fgets(rec, sizeof(rec), in)) { nl++; @@ -108,28 +109,42 @@ } } - while ((s = strstr(s,"/"))) { - if (*(s+1) == '/') { - if ((e = strstr(s+2,"\r\n"))) { - strcpy(s,e+2); - } else if ((e = strstr(s+2,"\n"))) { - strcpy(s,e+1); - } else { - *s = 0; - comment = 1; - break; - } - } else if (*(s+1) == '*') { - if ((e = strstr(s+2,"*/"))) { - strcpy(s,e+2); - } else { - *s = 0; - comment = 2; - break; - } - } else { - s++; - } + while ((*s == ' ') || (*s == '\t')) { + s++; + } + es = s; + qs = 0; + if (*s == '"') { + qs = 1; + /* find end of the string */ + es++; + while ((s = strstr(es, "\""))) { + es = s+1; /* end of quoted string */ + } + } + + while ((s = strstr(es, "/"))) { + if (*(s+1) == '/') { + if ((e = strstr(s+2,"\r\n"))) { + strcpy(s,e+2); + } else if ((e = strstr(s+2,"\n"))) { + strcpy(s,e+qs); + } else { + *s = 0; + comment = 1; + break; + } + } else if (*(s+1) == '*') { + if ((e = strstr(s+2,"*/"))) { + strcpy(s,e+2); + } else { + *s = 0; + comment = 2; + break; + } + } else { + s++; + } } fprintf(out,"%s",rec); Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.563 retrieving revision 1.564 diff -u -d -r1.563 -r1.564 --- NEWS 17 Nov 2010 16:18:51 -0000 1.563 +++ NEWS 18 Nov 2010 23:14:30 -0000 1.564 @@ -11,6 +11,7 @@ - 3097310 localConnect in cimcClientSfcbLocal.c accesses free'd memory - 3087577 Provider MI accessed before finished initializing - 3109469 Potential Buffer Overflow in msgqueue.c:localConnectServer() +- 3054618 mofpp is overaggressive when detecting comments Changes in 1.3.9 ================ Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.636 retrieving revision 1.637 diff -u -d -r1.636 -r1.637 --- ChangeLog 17 Nov 2010 16:18:51 -0000 1.636 +++ ChangeLog 18 Nov 2010 23:14:30 -0000 1.637 @@ -1,3 +1,8 @@ +2010-11-18 Chris Buccella <buc...@li...> + + * mofpp.c: + [ 3054618 ] mofpp is overaggressive when detecting comments + 2010-11-17 Chris Buccella <buc...@li...> * msgqueue.c: |
|
From: Chris B. <buc...@us...> - 2010-11-18 22:57:58
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via ac350c76d0d78c937c2f5b1d1a69d1b7e466f27e (commit)
via 34525ee7e8badb59ecae7b003ad9f101695d501e (commit)
via efdcb8f76600a006076e75bad8923e570b07429a (commit)
from d5b96275964d82a6c808db1a5c2cfdd845d333fa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ac350c76d0d78c937c2f5b1d1a69d1b7e466f27e
Merge: d5b96275964d82a6c808db1a5c2cfdd845d333fa 34525ee7e8badb59ecae7b003ad9f101695d501e
Author: buccella <buc...@li...>
Date: Thu Nov 18 17:21:25 2010 -0500
[ 3054618 ] mofpp is overaggressive when detecting comments
commit 34525ee7e8badb59ecae7b003ad9f101695d501e
Author: buccella <buc...@li...>
Date: Thu Nov 18 17:18:06 2010 -0500
[ 3054618 ] mofpp is overagressive when detecting comments
commit efdcb8f76600a006076e75bad8923e570b07429a
Author: buccella <buc...@li...>
Date: Sun Nov 7 15:04:06 2010 -0500
added comment
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
NEWS | 1 +
mofpp.c | 28 +++++++++++++++++++++++-----
3 files changed, 29 insertions(+), 5 deletions(-)
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|
|
From: Chris B. <buc...@us...> - 2010-11-17 16:21:38
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via d5b96275964d82a6c808db1a5c2cfdd845d333fa (commit)
from 9203cdd487e4f3dd313f567f10c08ccfb08d0f0d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d5b96275964d82a6c808db1a5c2cfdd845d333fa
Author: buccella <buc...@li...>
Date: Wed Nov 17 11:21:28 2010 -0500
[ 3109469 ] Potential Buffer Overflow in msgqueue.c:localConnectServer()
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
NEWS | 1 +
contributions.txt | 4 ++++
msgqueue.c | 2 +-
4 files changed, 12 insertions(+), 1 deletions(-)
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|
|
From: Chris B. <buc...@us...> - 2010-11-17 16:18:59
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv23411 Modified Files: msgqueue.c ChangeLog NEWS contributions.txt Log Message: [ 3109469 ] Potential Buffer Overflow in msgqueue.c:localConnectServer() Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.562 retrieving revision 1.563 diff -u -d -r1.562 -r1.563 --- NEWS 15 Nov 2010 23:27:48 -0000 1.562 +++ NEWS 17 Nov 2010 16:18:51 -0000 1.563 @@ -10,6 +10,7 @@ - 3101154 Daemon clients failed SfcbLocal connect due to permission - 3097310 localConnect in cimcClientSfcbLocal.c accesses free'd memory - 3087577 Provider MI accessed before finished initializing +- 3109469 Potential Buffer Overflow in msgqueue.c:localConnectServer() Changes in 1.3.9 ================ Index: msgqueue.c =================================================================== RCS file: /cvsroot/sblim/sfcb/msgqueue.c,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- msgqueue.c 10 Nov 2010 20:30:32 -0000 1.37 +++ msgqueue.c 17 Nov 2010 16:18:51 -0000 1.38 @@ -751,12 +751,12 @@ } read(nsocket, &msg.size, sizeof(msg.size)); - read(nsocket, &msg.oper, msg.size); int maxMsgSize = sizeof(struct _msg) - offsetof(struct _msg, oper); if (msg.size > maxMsgSize) { mlogf(M_INFO,M_SHOW,"--- localConnectServer: message size %d > max %d\n", maxMsgSize); abort(); } + read(nsocket, &msg.oper, msg.size); if (msg.size!=0) { mlogf(M_INFO,M_SHOW,"--- Local Client connect - pid: %d user: %s\n", Index: contributions.txt =================================================================== RCS file: /cvsroot/sblim/sfcb/contributions.txt,v retrieving revision 1.59 retrieving revision 1.60 diff -u -d -r1.59 -r1.60 --- contributions.txt 10 Nov 2010 20:30:33 -0000 1.59 +++ contributions.txt 17 Nov 2010 16:18:51 -0000 1.60 @@ -178,3 +178,7 @@ 11/08/2010 [ 3101155 ] Failed to load provider libraries due to symbol conflicts 11/08/2010 [ 3101148 ] SfcbLocal method parameter type conversion and validation 11/10/2010 [ 3101154 ] Daemon clients failed SfcbLocal connect due to permission + +Josef Moellers +-------------- +11/17/2010 [ 3109469 ] Potential Buffer Overflow in msgqueue.c:localConnectServer() Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.635 retrieving revision 1.636 diff -u -d -r1.635 -r1.636 --- ChangeLog 15 Nov 2010 23:27:48 -0000 1.635 +++ ChangeLog 17 Nov 2010 16:18:51 -0000 1.636 @@ -1,3 +1,9 @@ +2010-11-17 Chris Buccella <buc...@li...> + + * msgqueue.c: + [ 3109469 ] Potential Buffer Overflow in msgqueue.c:localConnectServer() + (patch by Josef Moellers) + 2010-11-15 Chris Buccella <buc...@li...> * providerDrv.c: |
|
From: Dave B. <bla...@us...> - 2010-11-15 23:52:08
|
Update of /cvsroot/sblim/jsr48-client In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15738 Modified Files: Tag: Experimental build.xml Log Message: 3109824 - Move Java link from Sun to Oracle Index: build.xml =================================================================== RCS file: /cvsroot/sblim/jsr48-client/build.xml,v retrieving revision 1.22.2.24 retrieving revision 1.22.2.25 diff -u -d -r1.22.2.24 -r1.22.2.25 --- build.xml 25 Feb 2010 23:17:15 -0000 1.22.2.24 +++ build.xml 15 Nov 2010 23:51:57 -0000 1.22.2.25 @@ -224,7 +224,7 @@ <group title="Packages containing the internal implementation" packages="org.sblim.cimclient.internal*:org.sblim.slp.internal*"/> - <link href="http://java.sun.com/j2se/1.5.0/docs/api/"/> + <link href="http://download.oracle.com/javase/1.5.0/docs/api/"/> <doctitle><![CDATA[<h1>SBLIM CIM Client for Java - ${Manifest.version} - Public API Specification</h1>]]></doctitle> <bottom><![CDATA[<i>Copyright © 2005, 2010 IBM Corporation. All Rights Reserved.</i>]]></bottom> </javadoc> |
|
From: Chris B. <buc...@us...> - 2010-11-15 23:39:20
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via 9203cdd487e4f3dd313f567f10c08ccfb08d0f0d (commit)
from 017f08c966569f9a7d7ac81241637f813c2fba4c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9203cdd487e4f3dd313f567f10c08ccfb08d0f0d
Author: buccella <buc...@li...>
Date: Mon Nov 15 18:38:26 2010 -0500
[ 3087577 ] Provider MI accessed before finished initializing
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
NEWS | 1 +
providerDrv.c | 3 +--
3 files changed, 7 insertions(+), 2 deletions(-)
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|
|
From: Tyrel D. <ty...@us...> - 2010-11-15 23:36:25
|
Update of /cvsroot/sblim/gather In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10929 Modified Files: NEWS Log Message: Fixed 3109840: mlog with arguments segfaults on M_SHOW Index: NEWS =================================================================== RCS file: /cvsroot/sblim/gather/NEWS,v retrieving revision 1.93 retrieving revision 1.94 diff -u -d -r1.93 -r1.94 --- NEWS 6 Nov 2010 01:38:54 -0000 1.93 +++ NEWS 15 Nov 2010 23:36:17 -0000 1.94 @@ -8,6 +8,7 @@ - 3074452 change ActiveVirtualProcessors to point metric - 1845491 gather reposdump facility segfaults - 3078358 no metrics collected for inactive virtual servers +- 3109840 mlog with arguments segfaults on M_SHOW Features added: - 3098510 add process name to UnixProcessMetric |
|
From: Tyrel D. <ty...@us...> - 2010-11-15 23:36:25
|
Update of /cvsroot/sblim/gather/util In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10929/util Modified Files: mlog.c Log Message: Fixed 3109840: mlog with arguments segfaults on M_SHOW Index: mlog.c =================================================================== RCS file: /cvsroot/sblim/gather/util/mlog.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mlog.c 20 May 2009 19:39:56 -0000 1.3 +++ mlog.c 15 Nov 2010 23:36:17 -0000 1.4 @@ -55,7 +55,7 @@ syslog(priosysl,buf); if (errout) { - vfprintf(stderr,fmt,ap); + vfprintf(stderr,buf); } va_end(ap); } |
|
From: Chris B. <buc...@us...> - 2010-11-15 23:27:57
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv8690 Modified Files: providerDrv.c ChangeLog NEWS Log Message: [ 3087577 ] Provider MI accessed before finished initializing Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.561 retrieving revision 1.562 diff -u -d -r1.561 -r1.562 --- NEWS 10 Nov 2010 23:48:25 -0000 1.561 +++ NEWS 15 Nov 2010 23:27:48 -0000 1.562 @@ -9,6 +9,7 @@ - 3101148 SfcbLocal method parameter type conversion and validation - 3101154 Daemon clients failed SfcbLocal connect due to permission - 3097310 localConnect in cimcClientSfcbLocal.c accesses free'd memory +- 3087577 Provider MI accessed before finished initializing Changes in 1.3.9 ================ Index: providerDrv.c =================================================================== RCS file: /cvsroot/sblim/sfcb/providerDrv.c,v retrieving revision 1.93 retrieving revision 1.94 diff -u -d -r1.93 -r1.94 --- providerDrv.c 8 Nov 2010 19:54:45 -0000 1.93 +++ providerDrv.c 15 Nov 2010 23:27:48 -0000 1.94 @@ -2449,7 +2449,6 @@ pthread_mutex_lock(&info->initMtx); if (info->initialized==0) { - info -> initialized = 1; ctx->ft->addEntry(ctx,CMPIInvocationFlags,(CMPIValue*)&flgs,CMPI_uint32); ctx->ft->addEntry(ctx,CMPIPrincipal,(CMPIValue*)"$$",CMPI_chars); @@ -2520,7 +2519,6 @@ if (rc) { rc = -2; - info -> initialized = 0; if (errstr != NULL) { *errorStr = sfcb_snprintf("Error initializing provider %s from %s for class %s. %s", info->providerName, info->location, @@ -2531,6 +2529,7 @@ info->providerName, info->location, info->className); } } else { + info -> initialized = 1; *errorStr = NULL; } } Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.634 retrieving revision 1.635 diff -u -d -r1.634 -r1.635 --- ChangeLog 10 Nov 2010 23:48:25 -0000 1.634 +++ ChangeLog 15 Nov 2010 23:27:48 -0000 1.635 @@ -1,3 +1,8 @@ +2010-11-15 Chris Buccella <buc...@li...> + + * providerDrv.c: + [ 3087577 ] Provider MI accessed before finished initializing + 2010-11-10 Chris Buccella <buc...@li...> * cimcClientSfcbLocal.c: |
|
From: Chris B. <buc...@us...> - 2010-11-12 15:53:38
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via 017f08c966569f9a7d7ac81241637f813c2fba4c (commit)
from af7c3aab19c4fb534c883390b6219e3c4ba6bcdd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 017f08c966569f9a7d7ac81241637f813c2fba4c
Author: buccella <buc...@li...>
Date: Fri Nov 12 10:53:10 2010 -0500
added compile, *.rej, and others
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|