From e6c4961795e1d5b6b01448f839af9df0730e00de Mon Sep 17 00:00:00 2001 From: Esteban Sanchez Date: Fri, 24 Aug 2007 11:54:39 +0000 Subject: [PATCH] 2007-08-24 Esteban Sanchez * pandora.cc: Changed log and debug file to have the same name that other operative system agents. * bin/PandoraAgent.exe: Updated to last commit. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@618 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_agents/win32/ChangeLog | 7 +++++++ pandora_agents/win32/bin/PandoraAgent.exe | Bin 5612731 -> 5612731 bytes pandora_agents/win32/pandora.cc | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pandora_agents/win32/ChangeLog b/pandora_agents/win32/ChangeLog index 27e84d8dce..a98e38ed82 100644 --- a/pandora_agents/win32/ChangeLog +++ b/pandora_agents/win32/ChangeLog @@ -1,3 +1,10 @@ +2007-08-24 Esteban Sanchez + + * pandora.cc: Changed log and debug file to have the same name that + other operative system agents. + + * bin/PandoraAgent.exe: Updated to last commit. + 2007-08-24 Esteban Sanchez * win32/windows/pandora_wmi.cc: Fixed a bug when reading free space diff --git a/pandora_agents/win32/bin/PandoraAgent.exe b/pandora_agents/win32/bin/PandoraAgent.exe index 84c2dd0ab9ba51b04e230dde837d8727a1b11b08..916f1fc92b142ada59290b1ab1ac6242c256c538 100755 GIT binary patch delta 438 zcmXZRxlY1x0Dy7+t%^6^cp`X$M=e$@-im@3P_4$*kU)q@LrtR(;Dm9~i6=1~n9#(; z7jR+p0ek@mKNE-F@_m($PpN{Z2g!bae$2>k$;zEW6;j$rf|All?Dw$MHlJEgZkQwsJvL zS7WLkDFLkq7k}T6ehgp`Lm0*g0vJUQA&g-h6PUylrV&O2GnmC3 z=AmE#Dxz3~h9xXx1v+9_#TwSJflX{-8#~xV9DCSD0!bX;5Jx!12~tQS0|TcxgNbw3 Is$Ljhzjn&FcmMzZ delta 436 zcmWm4xlY1x0Kj4XMa3I$yrrI?w6>yxw}Q7&wCV#uY8sQq8WU#YgmKb|Covru3~s)F z3!@L<3o!U|__nX|^(|HK`Yb(uzP%X!`p5NC?Y$=IS)rG684>b+4Wau*x+I$d68vaD zBbpFEGg{D!HngJyot|t418z)lTw8_jK7VJq4|&D9DHLthD%d_sueheUl|2KqTj9?UF7{>&{kTHoVOk)PKm_r0n%wqvDC{VEo z4LX(($1+y1iUg8a!#Xywi7jkn2fNrq3Tf=)0EaljF-~xbGh~p3fgH|p0TY*=Q@zUl F`~kJyx8nc+ diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index a25c2a5e0f..2dfc971a15 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -138,7 +138,7 @@ Pandora::pandoraLog (char *format, ...) { vsprintf (msg, format, args); va_end (args); - pandoraWriteLog ("pandora-log.log", (char *) msg); + pandoraWriteLog ("pandora_agent.log", (char *) msg); } /** @@ -160,7 +160,7 @@ Pandora::pandoraDebug (char *format, ...) { vsprintf (msg, format, args); va_end (args); - pandoraWriteLog ("pandora-debug.dbg", (char *) msg); + pandoraWriteLog ("pandora_agent.err", (char *) msg); } return; }