diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-06-25 10:05:19 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-06-25 10:05:19 +0200 |
commit | 5941ce7720393d28f04fac817ebcd21936c1ec8d (patch) | |
tree | 7d6440106ecb6f0bae3ba250567fc13d9422dbd0 /runtime/msg.c | |
parent | 4fa2254a0135f47f381b5931661cf37dddaa2af2 (diff) | |
download | rsyslog-5941ce7720393d28f04fac817ebcd21936c1ec8d.tar.gz rsyslog-5941ce7720393d28f04fac817ebcd21936c1ec8d.tar.bz2 rsyslog-5941ce7720393d28f04fac817ebcd21936c1ec8d.zip |
build: fix issues on FreeBSD
The last fix was incomplete. Thanks to Christiano for testing
and suggestions.
Diffstat (limited to 'runtime/msg.c')
-rw-r--r-- | runtime/msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/msg.c b/runtime/msg.c index 8c50b7b3..9d5fa883 100644 --- a/runtime/msg.c +++ b/runtime/msg.c @@ -2995,7 +2995,7 @@ uchar *MsgGetProp(msg_t *pMsg, struct templateEntry *pTpe, pRes = (uchar*) "UPTIME NOT available on this system"; *pbMustBeFreed = 0; -# elseif defined(__FreeBSD__) +# elif defined(__FreeBSD__) { struct timespec tp; |