mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 14:42:01 +01:00
fix hpn patches which was unintentionally disabled with commit 756f181a5 (main/openssh: support cross building and use default_prepare) rename *.diff to *.patch because *.diff are ignored by default_prepare
15 lines
359 B
Diff
15 lines
359 B
Diff
--- a/sftp.c 2014-10-24 10:32:15.793544472 +0500
|
|
+++ b/sftp.c 2014-10-24 10:35:22.329199875 +0500
|
|
@@ -2076,8 +2076,10 @@
|
|
signal(SIGINT, SIG_IGN);
|
|
|
|
if (el == NULL) {
|
|
- if (interactive)
|
|
+ if (interactive) {
|
|
printf("sftp> ");
|
|
+ fflush(stdout);
|
|
+ }
|
|
if (fgets(cmd, sizeof(cmd), infile) == NULL) {
|
|
if (interactive)
|
|
printf("\n");
|