]> git.sur5r.net Git - bacula/bacula/commitdiff
Correct migration prune SQL typo
authorKern Sibbald <kern@sibbald.com>
Mon, 2 Apr 2007 11:01:23 +0000 (11:01 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 2 Apr 2007 11:01:23 +0000 (11:01 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4491 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/sql_cmds.c

index 442221748e4a3a945ac306153d69d7edb8aff969..d45a500ee5564fbbeb1fdaf41fe7fbe0bb358ccf 100644 (file)
@@ -1,15 +1,7 @@
-/*
- *
- *  This file contains all the SQL commands issued by the Director
- *
- *     Kern Sibbald, July MMII
- *
- *   Version $Id$
- */
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2002-2006 Free Software Foundation Europe e.V.
+   Copyright (C) 2002-2007 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
    Switzerland, email:ftf@fsfeurope.org.
 */
+/*
+ *
+ *  This file contains all the SQL commands issued by the Director
+ *
+ *     Kern Sibbald, July MMII
+ *
+ *   Version $Id$
+ */
 
 #include "bacula.h"
 #include "cats.h"
@@ -246,7 +246,7 @@ const char *select_admin_del =
 const char *select_migrate_del =
    "SELECT DISTINCT DelCandidates.JobId,DelCandidates.PurgedFiles "
    "FROM Job,DelCandidates "
-   "WHERE (Job.JobId=DelCanditates.JobId AND DelCandidates.JobStatus!='T') OR "
+   "WHERE (Job.JobId=DelCandidates.JobId AND DelCandidates.JobStatus!='T') OR "
    "(Job.JobTDate>%s "
    "AND Job.ClientId=%s "
    "AND Job.Type='g')";