misc: spelling, always use "cannot" instead of "can not"

Just to be consistent ...

Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
This commit is contained in:
Ruediger Meier 2016-11-01 19:40:33 +01:00
parent a99c0eb09f
commit 223939d95b
11 changed files with 15 additions and 15 deletions

View File

@ -441,7 +441,7 @@ int main(int argc, char **argv)
dev = blkid_get_dev(cache, devname, flags);
if (!dev) {
fprintf(stderr, "%s: Can not find device in blkid cache\n",
fprintf(stderr, "%s: cannot find device in blkid cache\n",
devname);
exit(1);
}

View File

@ -1012,7 +1012,7 @@ int main(int argc, char **argv)
mask_signal(SIGINT, SIG_IGN, &saved_sigint);
if (failed) {
fprintf(stderr, _("Can not execute su shell\n\n"));
fprintf(stderr, _("cannot execute su shell\n\n"));
break;
}
fprintf(stderr, _("Login incorrect\n\n"));
@ -1051,7 +1051,7 @@ int main(int argc, char **argv)
continue;
}
errx(EXIT_FAILURE, _("Can not wait on su shell\n\n"));
errx(EXIT_FAILURE, _("cannot wait on su shell\n\n"));
} while (1);

View File

@ -886,12 +886,12 @@ is_vmware_platform(void)
act.sa_flags = SA_SIGINFO;
if (sigaction(SIGSEGV, &act, &oact))
err(EXIT_FAILURE, _("error: can not set signal handler"));
err(EXIT_FAILURE, _("cannot set signal handler"));
vmware_bdoor(&eax, &ebx, &ecx, &edx);
if (sigaction(SIGSEGV, &oact, NULL))
err(EXIT_FAILURE, _("error: can not restore signal handler"));
err(EXIT_FAILURE, _("cannot restore signal handler"));
return eax != (uint32_t)-1 && ebx == VMWARE_BDOOR_MAGIC;
}