aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-03 21:12:59 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-03 21:12:59 +0000
commit74fa79dd14b542799b829fa962b37ba3089e9cd6 (patch)
treea3cc7a8e3a24ba653791d3a319f74e2a988d9242 /capture.c
parent1c133517ec8d24dc755d4724454dfe90c426c4ab (diff)
clarify a comment
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16667 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/capture.c b/capture.c
index 8de503c853..074acc3fe7 100644
--- a/capture.c
+++ b/capture.c
@@ -372,7 +372,8 @@ capture_input_closed(capture_options *capture_opts)
g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "Capture stopped!");
g_assert(capture_opts->state == CAPTURE_PREPARING || capture_opts->state == CAPTURE_RUNNING);
- /* if we didn't started the capture (happens if an error occured), do a fake start */
+ /* if we didn't started the capture, do a fake start */
+ /* (happens if we got an error message - we won't get a filename then) */
if(capture_opts->state == CAPTURE_PREPARING) {
if(capture_opts->real_time_mode) {
cf_callback_invoke(cf_cb_live_capture_update_started, capture_opts);