Skip to content

Commit

Permalink
Minor fix in plugins kb handling
Browse files Browse the repository at this point in the history
  • Loading branch information
rixed committed Dec 20, 2018
1 parent 720c67e commit cadf24f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/delayogram/delayogram.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ static void handle_key(char c)
term_fini();
_exit(0);
}
break;
case '\n':
if (display_help) {
display_help = false;
Expand Down
1 change: 1 addition & 0 deletions plugins/duplicogram/duplicogram.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ static void handle_key(char c)
term_fini();
_exit(0);
}
break;
case '\n':
if (display_help) {
display_help = false;
Expand Down
1 change: 1 addition & 0 deletions plugins/nettop/nettop.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,7 @@ static void handle_key(char c)
term_fini();
_exit(0);
}
break;
case '\n':
if (display_help) {
display_help = false;
Expand Down
1 change: 1 addition & 0 deletions plugins/packetogram/packetogram.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ static void handle_key(char c)
term_fini();
_exit(0);
}
break;
case '\n':
if (display_help) {
display_help = false;
Expand Down
1 change: 1 addition & 0 deletions plugins/sslogram/sslogram.c
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,7 @@ static void handle_key(char c)
term_fini();
_exit(0);
}
break;
case '\n':
if (display_help) {
display_help = false;
Expand Down

0 comments on commit cadf24f

Please sign in to comment.