NagiosEnterprises / ndoutils

NDOUtils - Database Output for Nagios Core
GNU General Public License v2.0
48 stars 19 forks source link

Missing include in src/queue.c #27

Closed orlitzky closed 7 years ago

orlitzky commented 7 years ago

In queue.c, we find the following code...

void push_into_queue (char* buf) {
...
    #ifdef USE_NANOSLEEP
        delay.tv_sec = 0;
        delay.tv_nsec = 250000000;
        nanosleep(&delay,NULL);
    #else
        sleep(1);
    #endif

The time.h header for nanosleep is included, but unistd.h for sleep is not.

jfrickson commented 7 years ago

queue.c includes ../include/config.h which includes unistd.h

orlitzky commented 7 years ago

Oops, I missed that. We've been carrying a patch that can be dropped, then. Thanks!