mirror of https://github.com/containers/conmon.git
Fix problems found by codespell
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
parent
dd4fc17347
commit
7cb7fd73cc
|
|
@ -34,7 +34,7 @@ In most cases, conmon should be packaged with your favorite container
|
|||
manager. However, if you'd like to try building it from source, follow
|
||||
the steps below.
|
||||
|
||||
## Depedencies
|
||||
## Dependencies
|
||||
|
||||
These dependencies are required for the build:
|
||||
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ as the standard 'cloud-init' services.
|
|||
(above).
|
||||
|
||||
* Base images do not need to be produced often, but doing so completely
|
||||
manually would be time-consuming and error-prone. Therefor a special
|
||||
manually would be time-consuming and error-prone. Therefore a special
|
||||
semi-automatic *Makefile* target is provided to assist with producing
|
||||
all the base-images: ``conmon_base_images``
|
||||
|
||||
|
|
|
|||
|
|
@ -171,7 +171,7 @@ echo -e "\n${YEL}Removing and re-creating $SRC on $VMNAME.${NOR}"
|
|||
showrun $SSH_CMD --command "rm -rf $SRC"
|
||||
showrun $SSH_CMD --command "mkdir -p $SRC"
|
||||
|
||||
echo -e "\n${YEL}Transfering tarball to $VMNAME.${NOR}"
|
||||
echo -e "\n${YEL}Transferring tarball to $VMNAME.${NOR}"
|
||||
wait
|
||||
showrun $SCP_CMD $TEMPFILE $SSHUSER@$VMNAME:$TEMPFILE
|
||||
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ static bool read_stdio(int fd, stdpipe_t pipe, gboolean *eof)
|
|||
{
|
||||
/* We use two extra bytes. One at the start, which we don't read into, instead
|
||||
we use that for marking the pipe when we write to the attached socket.
|
||||
One at the end to guarentee a null-terminated buffer for journald logging*/
|
||||
One at the end to guarantee a null-terminated buffer for journald logging*/
|
||||
|
||||
char real_buf[STDIO_BUF_SIZE + 2];
|
||||
char *buf = real_buf + 1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue