summaryrefslogtreecommitdiff
path: root/src/nspawn
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-09-19 14:55:35 -0400
committerDave Reisner <dreisner@archlinux.org>2013-09-19 14:55:35 -0400
commitcecf24e7f0f3385e7ced3e97d78cc9cc4012a650 (patch)
tree7888f391eec416bb0883a9c388acfd34df2f3446 /src/nspawn
parentd2421337f6e7d5a6730599e929232689acb09394 (diff)
fix grammatical error
Diffstat (limited to 'src/nspawn')
-rw-r--r--src/nspawn/nspawn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c
index a0809da743..eb9605c356 100644
--- a/src/nspawn/nspawn.c
+++ b/src/nspawn/nspawn.c
@@ -424,7 +424,7 @@ static int mount_binds(const char *dest, char **l, unsigned long flags) {
if (stat(where, &dest_st) == 0) {
if ((source_st.st_mode & S_IFMT) != (dest_st.st_mode & S_IFMT)) {
- log_error("The file types of %s and %s do not matching. Refusing bind mount",
+ log_error("The file types of %s and %s do not match. Refusing bind mount",
*x, where);
return -EINVAL;
}