aboutsummaryrefslogtreecommitdiff
path: root/miscutils/bbconfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/bbconfig.c')
-rw-r--r--miscutils/bbconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/bbconfig.c b/miscutils/bbconfig.c
index 286077168..7c30669a3 100644
--- a/miscutils/bbconfig.c
+++ b/miscutils/bbconfig.c
@@ -4,7 +4,7 @@
4#include "libbb.h" 4#include "libbb.h"
5#include "bbconfigopts.h" 5#include "bbconfigopts.h"
6#if ENABLE_FEATURE_COMPRESS_BBCONFIG 6#if ENABLE_FEATURE_COMPRESS_BBCONFIG
7# include "unarchive.h" 7# include "archive.h"
8# include "bbconfigopts_bz2.h" 8# include "bbconfigopts_bz2.h"
9#endif 9#endif
10 10
@@ -15,7 +15,7 @@ int bbconfig_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
15 bunzip_data *bd; 15 bunzip_data *bd;
16 int i = start_bunzip(&bd, 16 int i = start_bunzip(&bd,
17 /* src_fd: */ -1, 17 /* src_fd: */ -1,
18 /* inbuf: */ (void *)bbconfig_config_bz2, 18 /* inbuf: */ bbconfig_config_bz2,
19 /* len: */ sizeof(bbconfig_config_bz2)); 19 /* len: */ sizeof(bbconfig_config_bz2));
20 /* read_bunzip can longjmp to start_bunzip, and ultimately 20 /* read_bunzip can longjmp to start_bunzip, and ultimately
21 * end up here with i != 0 on read data errors! Not trivial */ 21 * end up here with i != 0 on read data errors! Not trivial */