3b468acbb4
We usually do not have a sub-directory for a family of related packages, so move matchbox packages one directory higher, so they all are in packages/ Also re-order packages alphabetically. Reported-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
720 B
Diff
21 lines
720 B
Diff
Replace the legacy index() with strchr()
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
---
|
|
applets/mb-applet-menu-launcher.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: matchbox-panel-0.9.3/applets/mb-applet-menu-launcher.c
|
|
===================================================================
|
|
--- matchbox-panel-0.9.3.orig/applets/mb-applet-menu-launcher.c
|
|
+++ matchbox-panel-0.9.3/applets/mb-applet-menu-launcher.c
|
|
@@ -280,7 +280,7 @@
|
|
DBG("\tkey %s ", key);
|
|
if (*(++p) == '"') { p++; tc = sc; } /* skip "'s */
|
|
val = p;
|
|
- while(index(tc,*p) == NULL)
|
|
+ while(strchr(tc,*p) == NULL)
|
|
{
|
|
if (*p == '\\' && *(p+1) == '"') p++; /* skip \" */
|
|
p++;
|