Changeset 2089

Show
Ignore:
Timestamp:
02/26/2008 04:21:20 PM (6 months ago)
Author:
stbuehler
Message:

r2094@chromobil: stefan | 2008-02-26 17:10:49 +0100
Fix #1413: including of stdint.h/inttypes.h in etag.c

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/lighttpd-1.4.x/src/etag.c

    r1971 r2089  
    11#include <string.h> 
     2 
     3#ifdef HAVE_CONFIG_H 
     4#include "config.h" 
     5#endif 
     6 
     7#if defined HAVE_STDINT_H 
    28#include <stdint.h> 
     9#elif defined HAVE_INTTYPES_H 
     10#include <inttypes.h> 
     11#endif 
    312 
    413#include "buffer.h"