From: William Douglas Date: Mon, 21 May 2012 22:12:25 +0000 (-0700) Subject: Remove opt out check. X-Git-Tag: 2.1b_release~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cea70b7f28c1df2364897cb205cc4a1e5dfcae7a;p=external%2Fcorewatcher.git Remove opt out check. Always submit so remove check for opt out. Still need to remove the configuration bits for this. Signed-off-by: William Douglas --- diff --git a/src/coredump.c b/src/coredump.c index 86d7cdb..bc49339 100644 --- a/src/coredump.c +++ b/src/coredump.c @@ -691,12 +691,7 @@ static char *get_appfile(char *fullpath) if (!appfile) return NULL; - if (opted_in == 2) { - move_core(fullpath, "to-process"); - } else { - free(appfile); - return NULL; - } + move_core(fullpath, "to-process"); return appfile; }