summaryrefslogtreecommitdiff
path: root/asterisk.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-08-01 18:12:52 +0000
committerMark Spencer <markster@digium.com>2004-08-01 18:12:52 +0000
commite094bf07dcacdcc41d2af09c795ec1e8a724d944 (patch)
tree6da97a76fa900eb05a43bc83e93d732df09f1bda /asterisk.c
parent05e338ce7502730c042fa44bf14c715101a2a370 (diff)
Don't record empty lines (bug #2175, but not using proposed patch)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3561 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'asterisk.c')
-rwxr-xr-xasterisk.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/asterisk.c b/asterisk.c
index 29a105ba8..575ddbcb1 100755
--- a/asterisk.c
+++ b/asterisk.c
@@ -654,12 +654,22 @@ static void console_verboser(const char *s, int pos, int replace, int complete)
pthread_kill(consolethread, SIGURG);
}
+static int ast_all_zeros(char *s)
+{
+ while(*s) {
+ if (*s > 32)
+ return 0;
+ s++;
+ }
+ return 1;
+}
+
static void consolehandler(char *s)
{
printf(term_end());
fflush(stdout);
/* Called when readline data is available */
- if (s && !ast_strlen_zero(s))
+ if (s && !ast_all_zeros(s))
ast_el_add_history(s);
/* Give the console access to the shell */
if (s) {