diff options
author | Ton Voon <ton.voon@opsera.com> | 2010-06-17 09:16:43 (GMT) |
---|---|---|
committer | tonvoon <ton.voon@opsera.com> | 2010-06-23 13:30:34 (GMT) |
commit | 18f6835edaf7d640a2c9e476cb1babdbdadbfd9b (patch) | |
tree | ae11f40e48dc34658445c99012726f32bfb45c56 /gl/regex_internal.h | |
parent | f61412478ceb7c821793c8356b936f64066508bf (diff) | |
download | monitoring-plugins-18f6835edaf7d640a2c9e476cb1babdbdadbfd9b.tar.gz |
Added state retention APIs. Implemented for check_snmp with --rate option.
See http://nagiosplugin.org/c-api-private for more details on the API.
Also updated check_snmp -l option to change the perfdata label.
Diffstat (limited to 'gl/regex_internal.h')
-rw-r--r-- | gl/regex_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gl/regex_internal.h b/gl/regex_internal.h index 2cb8c4d..5aa5aa2 100644 --- a/gl/regex_internal.h +++ b/gl/regex_internal.h | |||
@@ -467,6 +467,8 @@ static unsigned int re_string_context_at (const re_string_t *input, Idx idx, | |||
467 | # else | 467 | # else |
468 | /* alloca is implemented with malloc, so just use malloc. */ | 468 | /* alloca is implemented with malloc, so just use malloc. */ |
469 | # define __libc_use_alloca(n) 0 | 469 | # define __libc_use_alloca(n) 0 |
470 | # undef alloca | ||
471 | # define alloca(n) malloc (n) | ||
470 | # endif | 472 | # endif |
471 | #endif | 473 | #endif |
472 | 474 | ||