Merge pull request #183 from lifubang/fixmasking fix masking input when there is no hintsCallback
diff --git a/linenoise.c b/linenoise.c
index 6d63856..01c3b93 100644
--- a/linenoise.c
+++ b/linenoise.c
@@ -669,7 +669,8 @@ int linenoiseEditInsert(struct linenoiseState *l, char c) {
if ((!mlmode && l->plen+l->len < l->cols && !hintsCallback)) {
/* Avoid a full update of the line in the
* trivial case. */
- if (write(l->ofd,&c,1) == -1) return -1;
+ char d = (maskmode==1) ? '*' : c;
+ if (write(l->ofd,&d,1) == -1) return -1;
} else {
refreshLine(l);
}