From 198b17abf0c8d1d07f4e22a757acd60d4a570af4 Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Sun, 21 Feb 2010 16:35:10 +1100 Subject: Spelling fixes for libreplace. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matthias Dieter Wallnöfer --- lib/replace/getpass.c | 2 +- lib/replace/replace.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/replace') 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; -- cgit