Changeset 344

Show
Ignore:
Timestamp:
02/20/06 23:20:07 (3 years ago)
Author:
common
Message:

[x] Nepenthes.cpp
- fix 2 invalid logCrit() makros that prevent compiling svn.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • nepenthes/trunk/nepenthes-core/src/Nepenthes.cpp

    r343 r344  
    13321332    { 
    13331333        case SIGHUP: 
    1334                 logCrit("Got SIGHUP\nRereading Config File!\n"); 
     1334                logCrit("%s\n", "Got SIGHUP\nRereading Config File!\n"); 
    13351335                g_Nepenthes->reloadConfig(); 
    13361336                break; 
    13371337 
    13381338        case SIGINT: 
    1339                 logCrit("Got SIGINT\nStopping NOW!\n"); 
     1339                logCrit("%s\n", "Got SIGINT\nStopping NOW!\n"); 
    13401340                g_Nepenthes->stop(); 
    13411341                break;