diff options
author | Brad Hards <bradh@frogmouth.net> | 2010-02-21 16:35:10 +1100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-02-22 21:45:34 +0100 |
commit | 198b17abf0c8d1d07f4e22a757acd60d4a570af4 (patch) | |
tree | 42a96456935b6dc4abfa30bdaa98115b8ea5e14f /lib/replace | |
parent | 319d3bf9d93ddfc1afbfb0c759f6d91906f915c1 (diff) | |
download | samba-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/replace')
-rw-r--r-- | lib/replace/getpass.c | 2 | ||||
-rw-r--r-- | lib/replace/replace.c | 2 |
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; |