Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
timeshift writer: fix stop condition
  • Loading branch information
perexg committed Jan 3, 2016
1 parent e4788ae commit 4449a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timeshift/timeshift_writer.c
Expand Up @@ -325,7 +325,7 @@ static void _process_msg
if (run) *run = 0;
break;
case SMT_STOP:
if (sm->sm_code == 0 && run)
if (sm->sm_code != SM_CODE_SOURCE_RECONFIGURED && run)
*run = 0;
break;

Expand Down

0 comments on commit 4449a20

Please sign in to comment.