~ubuntu-branches/ubuntu/feisty/strigi/feisty-backports

« back to all changes in this revision

Viewing changes to src/streamindexer/zipendanalyzer.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2006-11-12 19:23:58 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20061112192358-bopz8iu9cr8bosyc
Tags: 0.3.9-1
* New upstream release
* Remove patch to inotify support option, merged upstream
* Add poppler-utils and wv as Depends
* Include utils.mk to rules
* Add deepfind, deepgrep, luceneindexer and xmlindexer to
  strigi-daemon.install
* Update strigi-daemon.lintian-overrides for 0.3.9 version

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    ZipInputStream zip(in);
35
35
    InputStream *s = zip.nextEntry();
36
36
    if (zip.getStatus()) {
37
 
        printf("error: %s\n", zip.getError());
 
37
        fprintf(stderr, "error: %s\n", zip.getError());
38
38
//        exit(1);
39
39
    }
40
40
    while (s) {