aports/main/cryptsetup1/flush-stdout.patch
Natanael Copa 5b8a2c9c23 main/cryptsetup1: temporary new aport
we need to satisfy cryptsetup-libs dependency for mkinitfs while we
build cryptsetup2 and rebuild mkinitfs with cryptsetup2, so we introduce
a temporary cryptsetup1 package and make mkinitfs temprorary depend on
that.
2018-01-25 00:15:21 +00:00

18 lines
400 B
Diff

--- ./src/utils_tools.c.orig 2014-10-24 12:58:35.151717616 -0200
+++ ./src/utils_tools.c 2014-10-24 13:00:42.716855265 -0200
@@ -105,10 +105,13 @@
case CRYPT_LOG_NORMAL:
fputs(msg, stdout);
+ fflush(stdout);
break;
case CRYPT_LOG_VERBOSE:
- if (opt_verbose)
+ if (opt_verbose) {
fputs(msg, stdout);
+ fflush(stdout);
+ }
break;
case CRYPT_LOG_ERROR:
fputs(msg, stderr);