diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2013-02-27 16:28:33 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-02-27 16:28:33 +0100 |
commit | 9056fcecbfe5f16749ddd61f4ddb7dd4905a7ee8 (patch) | |
tree | 1bc66a59b96b826921a7793bbc509984d37e7435 | |
parent | 3a7b2417f9f599a8450c27f84d3330382a2c1b0a (diff) | |
download | busybox-w32-9056fcecbfe5f16749ddd61f4ddb7dd4905a7ee8.tar.gz busybox-w32-9056fcecbfe5f16749ddd61f4ddb7dd4905a7ee8.tar.bz2 busybox-w32-9056fcecbfe5f16749ddd61f4ddb7dd4905a7ee8.zip |
xz: avoid "NOTE:" in xz.h
Signed-off-by: Lasse Collin <lasse.collin@tukaani.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/libarchive/unxz/xz.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/libarchive/unxz/xz.h b/archival/libarchive/unxz/xz.h index c6c071c4a..6842ed726 100644 --- a/archival/libarchive/unxz/xz.h +++ b/archival/libarchive/unxz/xz.h | |||
@@ -70,7 +70,7 @@ enum xz_mode { | |||
70 | * @XZ_UNSUPPORTED_CHECK: Integrity check type is not supported. Decoding | 70 | * @XZ_UNSUPPORTED_CHECK: Integrity check type is not supported. Decoding |
71 | * is still possible in multi-call mode by simply | 71 | * is still possible in multi-call mode by simply |
72 | * calling xz_dec_run() again. | 72 | * calling xz_dec_run() again. |
73 | * NOTE: This return value is used only if | 73 | * Note that this return value is used only if |
74 | * XZ_DEC_ANY_CHECK was defined at build time, | 74 | * XZ_DEC_ANY_CHECK was defined at build time, |
75 | * which is not used in the kernel. Unsupported | 75 | * which is not used in the kernel. Unsupported |
76 | * check types return XZ_OPTIONS_ERROR if | 76 | * check types return XZ_OPTIONS_ERROR if |
@@ -105,7 +105,7 @@ enum xz_mode { | |||
105 | * stream that is truncated or otherwise corrupt. | 105 | * stream that is truncated or otherwise corrupt. |
106 | * | 106 | * |
107 | * In single-call mode, XZ_BUF_ERROR is returned only when the output buffer | 107 | * In single-call mode, XZ_BUF_ERROR is returned only when the output buffer |
108 | * is too small, or the compressed input is corrupt in a way that makes the | 108 | * is too small or the compressed input is corrupt in a way that makes the |
109 | * decoder produce more output than the caller expected. When it is | 109 | * decoder produce more output than the caller expected. When it is |
110 | * (relatively) clear that the compressed input is truncated, XZ_DATA_ERROR | 110 | * (relatively) clear that the compressed input is truncated, XZ_DATA_ERROR |
111 | * is used instead of XZ_BUF_ERROR. | 111 | * is used instead of XZ_BUF_ERROR. |
@@ -207,8 +207,8 @@ XZ_EXTERN struct xz_dec * XZ_FUNC xz_dec_init( | |||
207 | * The possible return values depend on build options and operation mode. | 207 | * The possible return values depend on build options and operation mode. |
208 | * See enum xz_ret for details. | 208 | * See enum xz_ret for details. |
209 | * | 209 | * |
210 | * NOTE: If an error occurs in single-call mode (return value is not | 210 | * Note that if an error occurs in single-call mode (return value is not |
211 | * XZ_STREAM_END), b->in_pos and b->out_pos are not modified, and the | 211 | * XZ_STREAM_END), b->in_pos and b->out_pos are not modified and the |
212 | * contents of the output buffer from b->out[b->out_pos] onward are | 212 | * contents of the output buffer from b->out[b->out_pos] onward are |
213 | * undefined. This is true even after XZ_BUF_ERROR, because with some filter | 213 | * undefined. This is true even after XZ_BUF_ERROR, because with some filter |
214 | * chains, there may be a second pass over the output buffer, and this pass | 214 | * chains, there may be a second pass over the output buffer, and this pass |