diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-13 00:02:12 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-13 00:02:12 +0000 |
| commit | 9e84f8d01f87efe5cc79d46d56e26325a09449c0 (patch) | |
| tree | d7b9878d2ef8ba554ccd422321f6d1a968d57b2a /scripts/netobj.py | |
| parent | 24969cd0efa675d399b4a5b97077b7c8d06b5fec (diff) | |
| download | zcatch-9e84f8d01f87efe5cc79d46d56e26325a09449c0.tar.gz zcatch-9e84f8d01f87efe5cc79d46d56e26325a09449c0.zip | |
compile fix, no static on securefunc typedef
Diffstat (limited to 'scripts/netobj.py')
| -rw-r--r-- | scripts/netobj.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/netobj.py b/scripts/netobj.py index 1a2de727..0245a5c8 100644 --- a/scripts/netobj.py +++ b/scripts/netobj.py @@ -239,7 +239,7 @@ def emit_source_file(f, p, protofilename): print >>f, "" if 1: # secure function table - print >>f, "typedef static int(*SECUREFUNC)(void *data, int size);" + print >>f, "typedef int(*SECUREFUNC)(void *data, int size);" print >>f, "static SECUREFUNC secure_funcs[] = {" print >>f, "\t" + 'secure_object_invalid,' for obj in p.objects: |