~ubuntu-branches/ubuntu/saucy/resiprocate/saucy-proposed

« back to all changes in this revision

Viewing changes to rutil/FileSystem.hxx

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2012-08-08 15:02:03 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120808150203-lzhbki3cqh2td7hk
Tags: 1.8.5-1
* New upstream release
* Make sure repro hashed passwords are not world readable
* Remove /var/lib/repro on purge (Closes: #675273)
* Delay in postrm in case process hasn't finished stopping
* Fix support for multiple ENUM carriers
* Fix issue with help text causing crash
* Fix clash between DIGEST and mutual TLS when used concurrently

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
                  bool operator==(const iterator& rhs) const;
48
48
                  const Data& operator*() const;
49
49
                  const Data* operator->() const;
 
50
                  bool is_directory() const;
50
51
               private:
51
52
#ifdef WIN32
52
53
                  HANDLE mWinSearch;
 
54
                  bool mIsDirectory;
53
55
#else
54
56
                  DIR* mNixDir;
55
57
                  struct dirent* mDirent;