1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

Fix spelling s/ouput/output/

Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
Mathieu Parent 2018-05-04 22:22:20 +02:00 committed by Andrew Bartlett
parent 7ad87bb43c
commit e8a3a43649
2 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ static enum ndr_err_code ndr_pull_compression_mszip_cab_chunk(struct ndr_pull *n
* happen
*/
return ndr_pull_error(ndrpull, NDR_ERR_COMPRESSION,
"zlib inflate error not enough space for ouput (PULL)");
"zlib inflate error not enough space for output (PULL)");
}
if (z_ret != Z_STREAM_END) {
return ndr_pull_error(ndrpull, NDR_ERR_COMPRESSION,

View File

@ -2269,7 +2269,7 @@ enum cm_message_output {
/**
* @brief Function to set the output format for a test.
*
* The ouput format for the test can either be set globally using this
* The output format for the test can either be set globally using this
* function or overriden with environment variable CMOCKA_MESSAGE_OUTPUT.
*
* The environment variable can be set to either STDOUT, SUBUNIT, TAP or XML.