diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-17 09:54:10 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-17 09:54:10 +0200 |
commit | 911101ed26292c766eae0b48575e5911b96d2ea7 (patch) | |
tree | 743d3dc673fbb29b734cd1f0f25d53a649e63ecf /runtime | |
parent | e16a207726dce038835cdc12a928a95b5b915440 (diff) | |
download | rsyslog-911101ed26292c766eae0b48575e5911b96d2ea7.tar.gz rsyslog-911101ed26292c766eae0b48575e5911b96d2ea7.tar.bz2 rsyslog-911101ed26292c766eae0b48575e5911b96d2ea7.zip |
moved "option_DisallowWarning" variable to global data pool
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/glbl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/glbl.h b/runtime/glbl.h index c309fec4..6c519cb7 100644 --- a/runtime/glbl.h +++ b/runtime/glbl.h @@ -51,6 +51,8 @@ BEGINinterface(glbl) /* name must also be changed in ENDinterface macro! */ rsRetVal (*SetDefPFFamily)(int); int (*GetDropMalPTRMsgs)(void); rsRetVal (*SetDropMalPTRMsgs)(int); + int (*GetOption_DisallowWarning)(void); + rsRetVal (*SetOption_DisallowWarning)(int); ENDinterface(glbl) #define glblCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */ |