From cea70b7f28c1df2364897cb205cc4a1e5dfcae7a Mon Sep 17 00:00:00 2001 From: William Douglas Date: Mon, 21 May 2012 15:12:25 -0700 Subject: [PATCH] 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 --- src/coredump.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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; } -- 2.7.4