(file) Return to Log.c CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Executor

Diff for /pegasus/src/Executor/Log.c between version 1.1.2.7 and 1.1.2.8

version 1.1.2.7, 2007/01/12 22:48:47 version 1.1.2.8, 2007/01/12 23:09:06
Line 91 
Line 91 
     if ((int)type <= (int)_level)     if ((int)type <= (int)_level)
     {     {
         va_list ap;         va_list ap;
           char buffer[EXECUTOR_BUFFER_SIZE];
   
         va_start(ap, format);         va_start(ap, format);
         vsyslog(_priorities[(int)type], prefixedFormat, ap);          vsprintf(buffer, prefixedFormat, ap);
         va_end(ap);         va_end(ap);
   
           syslog(_priorities[(int)type], "%s", buffer);
     }     }
 } }
  


Legend:
Removed from v.1.1.2.7  
changed lines
  Added in v.1.1.2.8

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2