diff options
author | Mathieu Parent <math.parent@gmail.com> | 2010-01-05 11:04:24 +0100 |
---|---|---|
committer | Ronnie Sahlberg <ronniesahlberg@gmail.com> | 2010-02-24 23:22:00 +1100 |
commit | 3f4ce412761f4ca98c46371a99b715a2e41c054f (patch) | |
tree | cf96ba87048305edd2bdd5e2249f154417143cf2 /ctdb | |
parent | 62b0af141f067d12cd34e7e837e3d5db874b73e1 (diff) | |
download | samba-3f4ce412761f4ca98c46371a99b715a2e41c054f.tar.gz samba-3f4ce412761f4ca98c46371a99b715a2e41c054f.tar.xz samba-3f4ce412761f4ca98c46371a99b715a2e41c054f.zip |
Correction of spelling errors.
* interupted -> interrupted
* dont -> don't
(thanks to lintian)
See https://bugzilla.samba.org/show_bug.cgi?id=6935
(This used to be ctdb commit 942f597dd343f21e2f0fc5d8116d929286db7413)
Diffstat (limited to 'ctdb')
-rw-r--r-- | ctdb/lib/replace/getpass.c | 2 | ||||
-rw-r--r-- | ctdb/server/ctdbd.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/lib/replace/getpass.c b/ctdb/lib/replace/getpass.c index d91d029f6a..787cd1d42c 100644 --- a/ctdb/lib/replace/getpass.c +++ b/ctdb/lib/replace/getpass.c @@ -211,7 +211,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/ctdb/server/ctdbd.c b/ctdb/server/ctdbd.c index 2e707f243a..12e754e1ba 100644 --- a/ctdb/server/ctdbd.c +++ b/ctdb/server/ctdbd.c @@ -139,7 +139,7 @@ int main(int argc, const char *argv[]) { "no-recmaster", 0, POPT_ARG_NONE, &options.no_recmaster, 0, "disable recmaster role on this node", NULL }, { "lvs", 0, POPT_ARG_NONE, &options.lvs, 0, "lvs is enabled on this node", NULL }, { "script-log-level", 0, POPT_ARG_INT, &options.script_log_level, DEBUG_ERR, "log level of event script output", NULL }, - { "nopublicipcheck", 0, POPT_ARG_NONE, &options.no_publicipcheck, 0, "dont check we have/dont have the correct public ip addresses", NULL }, + { "nopublicipcheck", 0, POPT_ARG_NONE, &options.no_publicipcheck, 0, "don't check we have/don't have the correct public ip addresses", NULL }, { "max-persistent-check-errors", 0, POPT_ARG_INT, &options.max_persistent_check_errors, 0, "max allowed persistent check errors (default 0)", NULL }, |