[maemo-commits] [maemo-commits] r16644 - in projects/haf/trunk/ke-recv: debian src

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Thu Nov 13 11:09:09 EET 2008
Author: kihamala
Date: 2008-11-13 11:09:08 +0200 (Thu, 13 Nov 2008)
New Revision: 16644

Modified:
   projects/haf/trunk/ke-recv/debian/changelog
   projects/haf/trunk/ke-recv/src/ke-recv.c
Log:
slot name fix


Modified: projects/haf/trunk/ke-recv/debian/changelog
===================================================================
--- projects/haf/trunk/ke-recv/debian/changelog	2008-11-12 17:21:37 UTC (rev 16643)
+++ projects/haf/trunk/ke-recv/debian/changelog	2008-11-13 09:09:08 UTC (rev 16644)
@@ -1,3 +1,9 @@
+ke-recv (3.2-1) unstable; urgency=low
+
+  * Slot naming fix, e.g. "slot:internal" -> "internal". Fixes: NB#92323
+
+ -- Kimmo Hämäläinen <kimmo.hamalainen at nokia.com>  Thu, 13 Nov 2008 10:43:24 +0200
+
 ke-recv (3.1-1) unstable; urgency=low
 
   * Add noatime and nodiratime mount options.

Modified: projects/haf/trunk/ke-recv/src/ke-recv.c
===================================================================
--- projects/haf/trunk/ke-recv/src/ke-recv.c	2008-11-12 17:21:37 UTC (rev 16643)
+++ projects/haf/trunk/ke-recv/src/ke-recv.c	2008-11-13 09:09:08 UTC (rev 16644)
@@ -1436,10 +1436,10 @@
 
         slot = get_prop_string(udi, "mmc_host.slot_name");
 
-        if (slot == NULL || strcmp(slot, "slot:external") == 0) {
+        if (slot == NULL || strcmp(slot, "external") == 0) {
                 mmc = &ext_mmc;
                 internal = 0;
-        } else if (strcmp(slot, "slot:internal") == 0) {
+        } else if (strcmp(slot, "internal") == 0) {
                 mmc = &int_mmc;
                 internal = 1;
         } else {


More information about the maemo-commits mailing list