aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-06-20 20:37:01 +0000
committerMike Frysinger <vapier@gentoo.org>2006-06-20 20:37:01 +0000
commit14ff19b28a07ae076f40eebbda5dd4bb17192742 (patch)
tree39c737da0842c56a3ca857d8b5e580fc335ed66c /shell
parent2b8a05a77533419b098a990f065a879553de5fe0 (diff)
downloadbusybox-14ff19b28a07ae076f40eebbda5dd4bb17192742.tar.gz
assign default debug level to the MSHDEBUG define
Diffstat (limited to 'shell')
-rw-r--r--shell/msh.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/msh.c b/shell/msh.c
index bd4b8fdb2..2c0184392 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -56,7 +56,7 @@
/*#define MSHDEBUG 1*/
#ifdef MSHDEBUG
-int mshdbg = 0;
+int mshdbg = MSHDEBUG;
#define DBGPRINTF(x) if(mshdbg>0)printf x
#define DBGPRINTF0(x) if(mshdbg>0)printf x
@@ -881,7 +881,6 @@ int msh_main(int argc, char **argv)
setval(mshdbg_var, "0");
#endif
-
prompt = lookup("PS1");
#ifdef CONFIG_FEATURE_SH_FANCY_PROMPT
if (prompt->value == null)