diff -Nru psensor-0.6.2.16/debian/changelog psensor-0.6.2.16/debian/changelog --- psensor-0.6.2.16/debian/changelog 2012-04-02 07:01:11.000000000 +0200 +++ psensor-0.6.2.16/debian/changelog 2012-07-07 00:52:32.000000000 +0200 @@ -1,3 +1,10 @@ +psensor (0.6.2.16-1ubuntu6) precise; urgency=low + + * debian/patches/LP1021900.patch + - added degree Celcius symbol. (Closes LP: #1021900) + + -- Jean-Philippe Orsini Sat, 07 Jul 2012 00:47:44 +0200 + psensor (0.6.2.16-1ubuntu4) precise; urgency=low * debian/patches/LP968912.patch diff -Nru psensor-0.6.2.16/debian/patches/LP1021900.patch psensor-0.6.2.16/debian/patches/LP1021900.patch --- psensor-0.6.2.16/debian/patches/LP1021900.patch 1970-01-01 01:00:00.000000000 +0100 +++ psensor-0.6.2.16/debian/patches/LP1021900.patch 2012-07-07 00:50:57.000000000 +0200 @@ -0,0 +1,26 @@ +Description: added degree Celcius symbol +Author: Jean-Philippe Orsini +Origin: Upstream +Ubuntu-bug: https://bugs.launchpad.net/ubuntu/+source/psensor/+bug/1021900 +Index: psensor-0.6.2.16/src/lib/psensor.c +=================================================================== +--- psensor-0.6.2.16.orig/src/lib/psensor.c 2012-07-07 00:40:33.000000000 +0200 ++++ psensor-0.6.2.16/src/lib/psensor.c 2012-07-07 00:47:36.258308297 +0200 +@@ -207,7 +207,7 @@ + char *unit; + + if (is_temp_type(type)) +- unit = "C"; ++ unit = "°C"; + else if (type & SENSOR_TYPE_CPU_USAGE) + unit = "%"; + else +@@ -427,7 +427,7 @@ + const char *psensor_type_to_unit_str(unsigned int type) + { + if (type & SENSOR_TYPE_TEMP) +- return _("C"); ++ return "\302\260C"; + + if (type & SENSOR_TYPE_FAN) + return _("RPM"); diff -Nru psensor-0.6.2.16/debian/patches/series psensor-0.6.2.16/debian/patches/series --- psensor-0.6.2.16/debian/patches/series 2012-04-02 07:00:41.000000000 +0200 +++ psensor-0.6.2.16/debian/patches/series 2012-07-07 00:46:29.000000000 +0200 @@ -1,2 +1,3 @@ drop_g_thread_init.patch LP968912.patch +LP1021900.patch