From: Kern Sibbald Date: Mon, 26 May 2003 21:03:48 +0000 (+0000) Subject: Correct typos X-Git-Tag: Release-1.31~103 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bfc31b4aced99898c935e54c8b158d2bbcb60a9b;p=bacula%2Fbacula Correct typos git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@553 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/stored/btape.c b/bacula/src/stored/btape.c index 2b8b669f47..f9dc249ce8 100644 --- a/bacula/src/stored/btape.c +++ b/bacula/src/stored/btape.c @@ -424,15 +424,15 @@ static void weofcmd() static void eomcmd() { if (!eod_dev(dev)) { - Pmsg1(0, _("Bad status from eod. ERR=%s\n"), strerror_dev(dev)); + Pmsg1(0, _("Bad status from MTEOD. ERR=%s\n"), strerror_dev(dev)); return; } else { - Pmsg0(0, _("Moved to end of media\n")); + Pmsg0(0, _("Moved to end of medium.\n")); } } /* - * Go to the end of the media (either hardware determined + * Go to the end of the medium (either hardware determined * or defined by two eofs. */ static void eodcmd() @@ -695,7 +695,7 @@ static int append_test() wrcmd(); weofcmd(); /* end file 2 */ rewindcmd(); - Pmsg0(0, _("Now moving to end of media.\n")); + Pmsg0(0, _("Now moving to end of medium.\n")); eodcmd(); Pmsg2(-1, _("We should be in file 3. I am at file %d. This is %s\n"), dev->file, dev->file == 3 ? "correct!" : "NOT correct!!!!");