~ubuntu-branches/ubuntu/wily/libee/wily

« back to all changes in this revision

Viewing changes to src/json_enc.c

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Chifflier
  • Date: 2011-07-12 21:38:37 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110712213837-hpc28tgu9jozb82b
Tags: 0.3.1-1
* Imported Upstream version 0.3.1
* Add watch file
* Update symbols file

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
        struct ee_tagbucket_listnode *tag;
180
180
        int needComma = 0;
181
181
 
182
 
        CHKR(es_addBuf(str, "\"tags\":[", 8));
 
182
        CHKR(es_addBuf(str, "\"event.tags\":[", 14));
183
183
        for(tag = tags->root ; tag != NULL ; tag = tag->next) {
184
184
                if(needComma)
185
185
                        es_addChar(str, ',');