]> git.sur5r.net Git - bacula/bacula/commitdiff
Eliminate pesky compiler warnings
authorKern Sibbald <kern@sibbald.com>
Sun, 26 Oct 2008 15:12:21 +0000 (15:12 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 26 Oct 2008 15:12:21 +0000 (15:12 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7907 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/ua_status.c
bacula/src/stored/status.c
bacula/src/tools/dbcheck.c

index 473853b3b46284709bafbd611fc9f8362e739642..bb49e4e2a2e4db8cb40a57b9275546c56270bcb4 100644 (file)
@@ -527,7 +527,7 @@ static void list_scheduled_jobs(UAContext *ua)
    i = find_arg_with_value(ua, NT_("days"));
    if (i >= 0) {
      days = atoi(ua->argv[i]);
-     if ((days < 0) || (days > 500) && !ua->api) {
+     if (((days < 0) || (days > 500)) && !ua->api) {
        ua->send_msg(_("Ignoring invalid value for days. Max is 500.\n"));
        days = 1;
      }
index a665e250d064a338b2bcc3d0bd947b8991493fc1..208a042c25febbdaa100240e5498d94826b8dae9 100644 (file)
@@ -405,7 +405,7 @@ static void list_running_jobs(STATUS_PKT *sp)
       }
       dcr = jcr->dcr;
       rdcr = jcr->read_dcr;
-      if ((dcr && dcr->device) || rdcr && rdcr->device) {
+      if ((dcr && dcr->device) || (rdcr && rdcr->device)) {
          bstrncpy(JobName, jcr->Job, sizeof(JobName));
          /* There are three periods after the Job name */
          char *p;
index 45072dda561deae7b493928746a478038c3a2cf4..07f4d8c4e4bc7152d19e0ebe007a59db02bd5fb3 100644 (file)
@@ -1343,7 +1343,7 @@ static bool check_idx(const char *col_name)
    int found = false;
 
    memset(&idx_list, 0, sizeof(idx_list));
-   char *query = "SHOW INDEX FROM File";
+   connst char *query = "SHOW INDEX FROM File";
    if (!db_sql_query(db, query, check_idx_handler, (void *)col_name)) {
       printf("%s\n", db_strerror(db));
    }