aboutsummaryrefslogtreecommitdiffstats
path: root/capchild
diff options
context:
space:
mode:
Diffstat (limited to 'capchild')
-rw-r--r--capchild/capture_session.h2
-rw-r--r--capchild/capture_sync.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/capchild/capture_session.h b/capchild/capture_session.h
index 93ddabb147..eb99a2d556 100644
--- a/capchild/capture_session.h
+++ b/capchild/capture_session.h
@@ -48,7 +48,7 @@ typedef struct _capture_session {
uid_t owner; /**< owner of the cfile */
gid_t group; /**< group of the cfile */
#endif
- gboolean session_started;
+ gboolean session_will_restart; /**< Set when session will restart */
guint32 count; /**< Total number of frames captured */
capture_options *capture_opts; /**< options for this capture */
capture_file *cf; /**< handle to cfile */
diff --git a/capchild/capture_sync.c b/capchild/capture_sync.c
index d2ed2ee75a..ca59d9711e 100644
--- a/capchild/capture_sync.c
+++ b/capchild/capture_sync.c
@@ -128,7 +128,7 @@ capture_session_init(capture_session *cap_session, capture_file *cf)
cap_session->group = getgid();
#endif
cap_session->count = 0;
- cap_session->session_started = FALSE;
+ cap_session->session_will_restart = FALSE;
}
/* Append an arg (realloc) to an argc/argv array */