mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 19:43:03 +00:00
More 'static' qualifiers on module global variables.
The 'pglobal' tool is quite handy indeed :-) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@200620 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -163,12 +163,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
</function>
|
||||
***/
|
||||
|
||||
enum {
|
||||
enum cdr_option_flags {
|
||||
OPT_RECURSIVE = (1 << 0),
|
||||
OPT_UNPARSED = (1 << 1),
|
||||
OPT_LAST = (1 << 2),
|
||||
OPT_SKIPLOCKED = (1 << 3),
|
||||
} cdr_option_flags;
|
||||
};
|
||||
|
||||
AST_APP_OPTIONS(cdr_func_options, {
|
||||
AST_APP_OPTION('l', OPT_LAST),
|
||||
|
||||
Reference in New Issue
Block a user