Fix problems found by codespell

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh 2020-09-12 06:07:41 -04:00
parent dd4fc17347
commit 7cb7fd73cc
No known key found for this signature in database
GPG Key ID: A2DF901DABE2C028
4 changed files with 4 additions and 4 deletions

View File

@ -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:

View File

@ -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``

View File

@ -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

View File

@ -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;