From 8d471ab9450d653dd40187f0476365cce0d3ce4f Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 8 Jun 2012 14:36:59 +0200 Subject: bugfix: did not compile under solaris due to $uptime property code For the time being, $uptime is not supported on Solaris --- runtime/msg.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'runtime/msg.c') diff --git a/runtime/msg.c b/runtime/msg.c index e09b8705..5f2efc8c 100644 --- a/runtime/msg.c +++ b/runtime/msg.c @@ -2565,6 +2565,10 @@ uchar *MsgGetProp(msg_t *pMsg, struct templateEntry *pTpe, *pbMustBeFreed = 0; break; case PROP_SYS_UPTIME: +# ifdef OS_SOLARIS + pRes = (uchar*) "UPTIME NOT available under Solaris"; + *pbMustBeFreed = 0; +# else { struct sysinfo s_info; @@ -2580,6 +2584,7 @@ uchar *MsgGetProp(msg_t *pMsg, struct templateEntry *pTpe, snprintf((char*) pRes, sizeof(uchar) * 32, "%ld", s_info.uptime); } +# endif break; default: /* there is no point in continuing, we may even otherwise render the -- cgit