1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

Spelling fixes for libreplace.

Signed-off-by: Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de>
This commit is contained in:
Brad Hards 2010-02-21 16:35:10 +11:00 committed by Matthias Dieter Wallnöfer
parent 319d3bf9d9
commit 198b17abf0
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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;