Update of /cvsroot/sblim/sfcb
In directory vz-cvs-3.sog:/tmp/cvs-serv32505
Modified Files:
NEWS sfcCustomLib.c
Log Message:
[ 3538858 ] custom routine to log indInst objinfo
Index: NEWS
===================================================================
RCS file: /cvsroot/sblim/sfcb/NEWS,v
retrieving revision 1.707
retrieving revision 1.708
diff -u -d -r1.707 -r1.708
--- NEWS 5 Jul 2012 23:04:47 -0000 1.707
+++ NEWS 9 Jul 2012 18:34:17 -0000 1.708
@@ -1,6 +1,7 @@
Changes in 1.3.16
=================
-
+New features:
+- 3538858 custom routine to log indInst objinfo
Bugs fixed:
- 3539569 Leaks in interopProvider
@@ -8,7 +9,6 @@
- 3539557 Memory leak in providerDrv with property list
- 3539555 Memory leak in TestInstanceProvider
- 1901737 Memory leak in internalProvider.c
-- 3538858 custom routine to log indInst objinfo
Changes in 1.3.15
=================
Index: sfcCustomLib.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/sfcCustomLib.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- sfcCustomLib.c 5 Jul 2012 23:04:47 -0000 1.2
+++ sfcCustomLib.c 9 Jul 2012 18:34:17 -0000 1.3
@@ -80,11 +80,10 @@
{
/* example - log to /tmp/indAudit.log
FILE *fp;
- char *ts = ctime(&t);
fp = fopen("/tmp/indAudit.log", "a+");
if (fp != NULL) {
- fwrite(operation, strlen(action), 1, fp);
- fwrite(objinfo, strlen(msg), 1, fp);
+ fwrite(operation, strlen(operation), 1, fp);
+ fwrite(objinfo, strlen(objinfo), 1, fp);
fwrite("\n\n",2,1,fp);
fflush(fp);
fclose(fp);
|