diff options
author | jbj <devnull@localhost> | 1998-12-02 18:09:41 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1998-12-02 18:09:41 +0000 |
commit | b3179e6de35d2b960dab92230e106a817b00bc64 (patch) | |
tree | d6f77455f66a17fede2938634a4199c01497bde9 /rpmio | |
parent | d92392129691bddc6cb6ce6fbefd6969fd02d315 (diff) | |
download | rpm-b3179e6de35d2b960dab92230e106a817b00bc64.tar.gz rpm-b3179e6de35d2b960dab92230e106a817b00bc64.tar.bz2 rpm-b3179e6de35d2b960dab92230e106a817b00bc64.zip |
Set max_macro_depth to 16 always.
CVS patchset: 2574
CVS date: 1998/12/02 18:09:41
Diffstat (limited to 'rpmio')
-rw-r--r-- | rpmio/macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/macro.c b/rpmio/macro.c index 5ea3c19b3..d19bf5609 100644 --- a/rpmio/macro.c +++ b/rpmio/macro.c @@ -32,7 +32,7 @@ typedef struct MacroBuf { static int expandMacro(MacroBuf *mb); -#define MAX_MACRO_DEPTH 5 +#define MAX_MACRO_DEPTH 16 int max_macro_depth = MAX_MACRO_DEPTH; #ifdef DEBUG_MACROS |