]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix typo
authorKern Sibbald <kern@sibbald.com>
Wed, 24 Sep 2008 18:44:36 +0000 (18:44 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 24 Sep 2008 18:44:36 +0000 (18:44 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7633 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/migrate.c

index aca06de11ed8278f866edc49fb46a0143faaf13f..de7c383c728a9b1467f5e1bdef51bb74e6acbb7f 100644 (file)
@@ -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)";