The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
15 lines
473 B
Diff
15 lines
473 B
Diff
--- a/src/server.c
|
|
+++ b/src/server.c
|
|
@@ -2013,11 +2013,8 @@ static void dispatch_method(lo_server s,
|
|
|
|
tmp = (char*) malloc(strlen(it->path + len) + 1);
|
|
strcpy(tmp, it->path + len);
|
|
-#if defined(WIN32) || defined(_MSC_VER)
|
|
sec = strchr(tmp, '/');
|
|
-#else
|
|
- sec = index(tmp, '/');
|
|
-#endif
|
|
+
|
|
if (sec)
|
|
*sec = '\0';
|
|
slend = sl;
|