summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/replace/getpass.c2
-rw-r--r--lib/replace/replace.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/replace/getpass.c b/lib/replace/getpass.c
index 0be618fc91..aab53c533d 100644
--- a/lib/replace/getpass.c
+++ b/lib/replace/getpass.c
@@ -214,7 +214,7 @@ char *rep_getpass(const char *prompt)
catch_signal(SIGINT, SIGNAL_CAST SIG_DFL);
if (gotintr) {
- printf("Interupted by signal.\n");
+ printf("Interrupted by signal.\n");
fflush(stdout);
exit(1);
}
diff --git a/lib/replace/replace.c b/lib/replace/replace.c
index 6f0851da7c..8eba98acf4 100644
--- a/lib/replace/replace.c
+++ b/lib/replace/replace.c
@@ -409,7 +409,7 @@ int rep_chroot(const char *dname)
int rep_mkstemp(char *template)
{
/* have a reasonable go at emulating it. Hope that
- the system mktemp() isn't completly hopeless */
+ the system mktemp() isn't completely hopeless */
char *p = mktemp(template);
if (!p)
return -1;