~ubuntu-branches/debian/lenny/zabbix/lenny

« back to all changes in this revision

Viewing changes to src/zabbix_server/functions.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Ablassmeier
  • Date: 2006-11-08 15:06:04 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20061108150604-jhc07uf5lkwcig6h
Tags: 1:1.1.4-1
* New upstream version
* Add Portuguese debconf translation, thanks 
  Miguel Figueiredo (Closes: #398301)
* Updated French Debconf translation, thanks
  Yves Rutschle (Closes: #398514)
* debian/patches/07_zabbix-delta.dpatch: remove,
  merged upstream
* Keep config templates in sync with upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
677
677
        value_esc[0]    = '\0';
678
678
        value_double    = 0;
679
679
 
680
 
        /* Required for nodata() */
681
 
        item->lastclock = now;
682
680
        
683
681
        if(value->type & AR_UINT64)
684
682
        {
803
801
                DBexecute(sql);
804
802
        }
805
803
 
 
804
        /* Required for nodata() */
 
805
        item->lastclock = now;
 
806
 
806
807
        return ret;
807
808
}
808
809