Imported Upstream version 2.7
[ossec-hids.git] / src / monitord / monitord.c
index 33ab59d..8ae5c93 100755 (executable)
@@ -1,4 +1,5 @@
-/* @(#) $Id$ */
+/* @(#) $Id: ./src/monitord/monitord.c, 2011/09/08 dcid Exp $
+ */
 
 /* Copyright (C) 2009 Trend Micro Inc.
  * All rights reserved.
 /* Real monitord global */
 void Monitord()
 {
-    time_t tm;     
-    struct tm *p;       
+    time_t tm;
+    struct tm *p;
 
-    int today = 0;                     
+    int today = 0;             
     int thismonth = 0;
     int thisyear = 0;
 
@@ -31,18 +32,18 @@ void Monitord()
     sleep(10);
 
     memset(str, '\0', OS_SIZE_1024 +1);
-    
-    
+
+
     /* Getting currently time before starting */
     tm = time(NULL);
     p = localtime(&tm);        
-    
+
     today = p->tm_mday;
     thismonth = p->tm_mon;
     thisyear = p->tm_year+1900;
-                
 
-    
+
+
     /* Connecting to the message queue
      * Exit if it fails.
      */
@@ -60,7 +61,7 @@ void Monitord()
         merror(QUEUE_SEND, ARGV0);
     }
 
-    
+
     /* Main monitor loop */
     while(1)
     {
@@ -73,7 +74,7 @@ void Monitord()
         {
             monitor_agents();
         }
-        
+
         /* Day changed, deal with log files */
         if(today != p->tm_mday)
         {