Displaying 2 results from an estimated 2 matches for "update_progress_meter".
2015 Jul 23
37
[Bug 2434] New: scp can send arbitrary control characters / escape sequences to the terminal
https://bugzilla.mindrot.org/show_bug.cgi?id=2434
Bug ID: 2434
Summary: scp can send arbitrary control characters / escape
sequences to the terminal
Product: Portable OpenSSH
Version: 6.7p1
Hardware: Other
OS: Linux
Status: NEW
Severity: security
Priority: P5
2009 Oct 25
0
alternate output for progressmeter
..._per_second = 0;
- ? ? ? setscreensize();
+ ? ? ? if (progresstype)
+ ? ? ? ? ? ? ? win_size=MAX_WINSIZE;
+ ? ? ? else {
+ ? ? ? ? ? ? ? setscreensize();
+ ? ? ? ? ? ? ? signal(SIGWINCH, sig_winch);
+ ? ? ? }
? ? ? ?if (can_output())
? ? ? ? ? ? ? ?refresh_progress_meter();
? ? ? ?signal(SIGALRM, update_progress_meter);
- ? ? ? signal(SIGWINCH, sig_winch);
? ? ? ?alarm(UPDATE_INTERVAL);
?}
@@ -278,7 +289,8 @@
? ? ? ?if (cur_pos != end_pos)
? ? ? ? ? ? ? ?refresh_progress_meter();
- ? ? ? atomicio(vwrite, STDOUT_FILENO, "\n", 1);
+ ? ? ? if (progresstype==0)
+ ? ? ? ? ? ? ? atomicio(vwrite, STDOUT_FIL...