Remove opt out check.
authorWilliam Douglas <william.douglas@intel.com>
Mon, 21 May 2012 22:12:25 +0000 (15:12 -0700)
committerWilliam Douglas <william.douglas@intel.com>
Mon, 21 May 2012 22:12:25 +0000 (15:12 -0700)
Always submit so remove check for opt out. Still need to remove the
configuration bits for this.

Signed-off-by: William Douglas <william.douglas@intel.com>
src/coredump.c

index 86d7cdb..bc49339 100644 (file)
@@ -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;
 }