aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-snort.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-11-23 18:25:53 -0800
committerGuy Harris <guy@alum.mit.edu>2016-11-24 02:26:43 +0000
commit19b6062ffde208c3609581f306fc05594bfccfb7 (patch)
treef4fdae0f1eb0e960e28b1f7d14fffbd4091edff3 /epan/dissectors/packet-snort.c
parent7dbe9b49879e06e1d86c11140e2bfdacbabde74b (diff)
Note that we can't use a child setup routine in g_spawn routines.
They don't work on Windows, and we support Windows, so.... Change-Id: Icdbdfcfd930ae13aba6d8fb018d7e2af55b76fa1 Reviewed-on: https://code.wireshark.org/review/18943 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-snort.c')
-rw-r--r--epan/dissectors/packet-snort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-snort.c b/epan/dissectors/packet-snort.c
index a37e60800f..6a57169d2e 100644
--- a/epan/dissectors/packet-snort.c
+++ b/epan/dissectors/packet-snort.c
@@ -1121,7 +1121,7 @@ static void snort_start(void)
(char **)argv,
NULL, /* envp */
(GSpawnFlags)( G_SPAWN_DO_NOT_REAP_CHILD), /* Leave out G_SPAWN_SEARCH_PATH */
- NULL, /* child setup - not currently doing anything.. */
+ NULL, /* child setup - not supported in Windows, so we can't use it */
NULL, /* user-data */
&current_session.pid, /* PID */
&current_session.in, /* stdin */