mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Fixing merge relicts.
This commit is contained in:
parent
ef3da87b3f
commit
ff73f3a040
2 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,7 @@ protected:
|
||||||
/**
|
/**
|
||||||
* Sets the name of the backend's type.
|
* Sets the name of the backend's type.
|
||||||
*/
|
*/
|
||||||
void SetTypeName(const string& name) const { ty_name = name; }
|
void SetTypeName(const string& name) { ty_name = name; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ReaderBackend* backend; // The backend we have instanatiated.
|
ReaderBackend* backend; // The backend we have instanatiated.
|
||||||
|
|
|
@ -21,7 +21,7 @@ public:
|
||||||
info(info), num_fields(num_fields), fields(fields),
|
info(info), num_fields(num_fields), fields(fields),
|
||||||
frontend_name(frontend_name) { }
|
frontend_name(frontend_name) { }
|
||||||
|
|
||||||
virtual bool Process() { return Object()->Init(info, num_fields, fields); }
|
virtual bool Process() { return Object()->Init(info, num_fields, fields, frontend_name); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
WriterBackend::WriterInfo info;
|
WriterBackend::WriterInfo info;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue