aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2010-06-01 22:20:15 +0000
committerGerald Combs <gerald@wireshark.org>2010-06-01 22:20:15 +0000
commitfe79af8f421f738dcb767b4fdadad8bf65c81400 (patch)
treee9d095d8acc923c5458ff7870a7e148134762a6f /epan/wspython
parent217b344bd982ce69a688805ee9f5d27aa9c9ecbd (diff)
From Kovarththanan Rajaratnam via bug 3500:
Sébastien's initial commit [1] didn't contain support for embedding Python on Windows. [1] http://anonsvn.wireshark.org/viewvc?view=rev&revision=28529 From me: Comment out PYTHON_EMBED for now. Start a list of known Python+CRT versions. Add get_wspython_dir to libwireshark.def. svn path=/trunk/; revision=33036
Diffstat (limited to 'epan/wspython')
-rw-r--r--epan/wspython/wspy_register.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wspython/wspy_register.c b/epan/wspython/wspy_register.c
index dd3e4fb1bc..76f4efd8f3 100644
--- a/epan/wspython/wspy_register.c
+++ b/epan/wspython/wspy_register.c
@@ -229,7 +229,7 @@ void py_dissect(tvbuff_t * tvb, packet_info * pinfo,
*/
dissector_t py_generic_dissector(void)
{
- return py_dissect;
+ return &py_dissect;
}
struct SRegisterHandoffsForeach {