pkgsrc/net/xorp/patches/patch-cli_cli__client.cc
joerg 0426d1b980 Fix a number of issues found by clang:
- missing this references to ensure template functions are found
- using == as assignment
- unused functions in lex sources
- adding integers to strings instead of formatting them
- class vs struct mismatches
2012-07-03 17:36:10 +00:00

31 lines
1.1 KiB
C++

$NetBSD: patch-cli_cli__client.cc,v 1.1 2012/07/03 17:36:10 joerg Exp $
--- cli/cli_client.cc.orig 2009-01-05 18:30:45.000000000 +0000
+++ cli/cli_client.cc
@@ -832,7 +832,7 @@ CliClient::process_char_page_mode(uint8_
//
// Print help
//
- if ((val == 'h')) {
+ if (val == 'h') {
if (! is_help_mode()) {
set_help_mode(true);
_is_page_buffer_mode = &_is_help_buffer_mode;
@@ -958,7 +958,7 @@ CliClient::process_char_page_mode(uint8_
// Display the output all at once instead of oen screen at a time.
// (Same as specifying the "| no-more" command.)
//
- if ((val == 'N')) {
+ if (val == 'N') {
while (page_buffer_last_line_n() < page_buffer_lines_n()) {
set_page_buffer_mode(false);
cli_print(page_buffer_line(page_buffer_last_line_n()));
@@ -1021,7 +1021,7 @@ CliClient::process_char_page_mode(uint8_
//
// Redraw the output of the screen
//
- if ((val == CHAR_TO_CTRL('l'))) {
+ if (val == CHAR_TO_CTRL('l')) {
redisplay_screen_label:
size_t i, start_window_line = 0;
set_page_buffer_mode(false);