From: Kern Sibbald Date: Wed, 24 Sep 2008 18:44:36 +0000 (+0000) Subject: Fix typo X-Git-Tag: Release-7.0.0~4099 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5bc069b8df7ed66d73ae23a185f0d5a0f7bc94e8;p=bacula%2Fbacula Fix typo git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7633 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/dird/migrate.c b/bacula/src/dird/migrate.c index aca06de11e..de7c383c72 100644 --- a/bacula/src/dird/migrate.c +++ b/bacula/src/dird/migrate.c @@ -558,13 +558,13 @@ const char *sql_jobids_from_mediaid = " AND Job.Type='B'" " ORDER by Job.StartTime"; -/* Get tne number of bytes in the pool */ +/* Get the number of bytes in the pool */ const char *sql_pool_bytes = "SELECT SUM(VolBytes) FROM Media,Pool WHERE" " VolStatus in ('Full','Used','Error','Append') AND Media.Enabled=1 AND" " Media.PoolId=Pool.PoolId AND Pool.Name='%s'"; -/* Get tne number of bytes in the Jobs */ +/* Get the number of bytes in the Jobs */ const char *sql_job_bytes = "SELECT SUM(JobBytes) FROM Job WHERE JobId IN (%s)";