summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBrad Hards <bradh@frogmouth.net>2010-02-21 16:35:10 +1100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-02-22 21:45:34 +0100
commit198b17abf0c8d1d07f4e22a757acd60d4a570af4 (patch)
tree42a96456935b6dc4abfa30bdaa98115b8ea5e14f /lib
parent319d3bf9d93ddfc1afbfb0c759f6d91906f915c1 (diff)
downloadsamba-198b17abf0c8d1d07f4e22a757acd60d4a570af4.tar.gz
samba-198b17abf0c8d1d07f4e22a757acd60d4a570af4.tar.bz2
samba-198b17abf0c8d1d07f4e22a757acd60d4a570af4.zip
Spelling fixes for libreplace.
Signed-off-by: Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de>
Diffstat (limited to 'lib')
-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;