free(cache_ppathid);
free(nodes);
}
+private:
+ pathid_cache(const pathid_cache &); /* prohibit pass by value */
+ pathid_cache &operator= (const pathid_cache &);/* prohibit class assignment*/
} ;
/* Return the parent_dir with the trailing / (update the given string)
/* for internal use */
int _handle_path(void *, int, char **);
-private:
+private:
+ Bvfs(const Bvfs &); /* prohibit pass by value */
+ Bvfs & operator = (const Bvfs &); /* prohibit class assignment */
+
JCR *jcr;
B_DB *db;
POOLMEM *jobids;
General:
+30Aug09
+ebl Prohibe copy and assignment in Bvfs.
28Aug09
kes Fix bug #1357 Verify jobs fail when job has zero files
26Aug09