Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 8295] LUA:There is no col_set_fence() equivalent.

Date: Sat, 23 Feb 2013 22:40:10 +0000

changed bug 8295

What Removed Added
Status UNCONFIRMED IN_PROGRESS
Ever confirmed   1
Severity Major Enhancement

Comment # 2 on bug 8295 from
This patch looks to be against the 1.8 trunk.  Usually patches are submitted
against the trunk and then backported to the 1.8 and/or 1.6 trunks as
appropriate.  In this case, I'm not sure if it would be backported.  To me,
this seems like more of an enhancement (and I've marked the bug as such), so it
wouldn't generally be backported.

Also, maybe simplify Column_fence() slightly?  i.e.,

WSLUA_METHOD Column_fence(lua_State *L) {
    /* Sets Column text fence, to prevent overwriting */
    Column c = checkColumn(L,1);

    if (c && c->cinfo)
        col_set_fence(c->cinfo, c->col);

    return 0;
}


You are receiving this mail because:
  • You are watching all bug changes.