]> granicus.if.org Git - sudo/commitdiff
Use fputs(), not printf() for plain strings.
authorTodd C. Miller <Todd.Miller@sudo.ws>
Tue, 20 Aug 2019 18:43:40 +0000 (12:43 -0600)
committerTodd C. Miller <Todd.Miller@sudo.ws>
Tue, 20 Aug 2019 18:43:40 +0000 (12:43 -0600)
plugins/sudoers/sudoreplay.c

index 1dba39cffbb66abba79058c6e7b2282885291b0b..f4bf890129d94688ecb7894fd599929d766703a8 100644 (file)
@@ -704,7 +704,7 @@ setup_terminal(struct log_info *li, bool interactive, bool resize)
     }
 
     if (li->rows > terminal_rows || li->cols > terminal_cols) {
-       printf(_("Warning: your terminal is too small to properly replay the log.\n"));
+       fputs(_("Warning: your terminal is too small to properly replay the log.\n"), stdout);
        printf(_("Log geometry is %d x %d, your terminal's geometry is %d x %d."), li->rows, li->cols, terminal_rows, terminal_cols);
     }
     debug_return;
@@ -733,7 +733,8 @@ restore_terminal_size(void)
     if (terminal_was_resized) {
        /* We are still in raw mode, hence the carriage return. */
        putchar('\r');
-       printf(U_("Replay finished, press any key to restore the terminal."));
+       fputs(U_("Replay finished, press any key to restore the terminal."),
+           stdout);
        fflush(stdout);
        (void)getchar();
        xterm_set_size(terminal_rows, terminal_cols);