diff -Nru whoopsie-0.2.24.6/debian/bzr-builddeb.conf whoopsie-0.2.24.6ubuntu2/debian/bzr-builddeb.conf --- whoopsie-0.2.24.6/debian/bzr-builddeb.conf 1970-01-01 00:00:00.000000000 +0000 +++ whoopsie-0.2.24.6ubuntu2/debian/bzr-builddeb.conf 2015-02-20 18:27:24.000000000 +0000 @@ -0,0 +1,2 @@ +[BUILDDEB] +native = True diff -Nru whoopsie-0.2.24.6/debian/changelog whoopsie-0.2.24.6ubuntu2/debian/changelog --- whoopsie-0.2.24.6/debian/changelog 2014-06-09 18:04:02.000000000 +0000 +++ whoopsie-0.2.24.6ubuntu2/debian/changelog 2015-11-09 21:24:06.000000000 +0000 @@ -1,3 +1,17 @@ +whoopsie (0.2.24.6ubuntu2) trusty-proposed; urgency=medium + + * src/whoopsie.c: Send UnreportableReason to the Error Tracker that way we + know apport's opinion of the crash. (LP: #1382233) + + -- Brian Murray Mon, 09 Nov 2015 13:24:00 -0800 + +whoopsie (0.2.24.6ubuntu1) trusty-proposed; urgency=medium + + * Merge patch from Bryan Quigley to only log when whoopsie's state changes. + (LP: #1217407) + + -- Brian Murray Mon, 02 Feb 2015 14:28:08 -0800 + whoopsie (0.2.24.6) trusty-proposed; urgency=medium * Log the OOPS ID (returned by daisy) for the reported crash. (LP: #1326000) diff -Nru whoopsie-0.2.24.6/src/whoopsie.c whoopsie-0.2.24.6ubuntu2/src/whoopsie.c --- whoopsie-0.2.24.6/src/whoopsie.c 2014-06-09 18:03:23.000000000 +0000 +++ whoopsie-0.2.24.6ubuntu2/src/whoopsie.c 2015-11-09 21:22:24.000000000 +0000 @@ -153,7 +153,7 @@ /* We would only want this to see how many bugs would otherwise go * unreported: */ - /* "UnreportableReason", */ + "UnreportableReason", /* We'll have our own count in the database. */ /* "CrashCounter", */ @@ -817,7 +817,9 @@ void network_changed (gboolean available) { - log_msg (available ? "online\n" : "offline\n"); + if (online_state != available) + log_msg (available ? "online\n" : "offline\n"); + if (!available) { online_state = FALSE; return;