summaryrefslogtreecommitdiffstats
path: root/abs/extra/remyth/service_type.js.patch
diff options
context:
space:
mode:
Diffstat (limited to 'abs/extra/remyth/service_type.js.patch')
-rw-r--r--abs/extra/remyth/service_type.js.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/extra/remyth/service_type.js.patch b/abs/extra/remyth/service_type.js.patch
new file mode 100644
index 0000000..ef1feca
--- /dev/null
+++ b/abs/extra/remyth/service_type.js.patch
@@ -0,0 +1,24 @@
+--- node_modules/mdns/lib/service_type.js.orig 2012-11-05 02:42:27.910994908 +0000
++++ node_modules/mdns/lib/service_type.js 2012-11-05 02:43:26.784326471 +0000
+@@ -156,8 +156,8 @@
+ if (str.length === 0) {
+ throw new Error('type ' + str + ' must not be empty');
+ }
+- if (str.length > 14) {
+- throw new Error('type ' + str + ' has more than 14 characters');
++ if (str.length > 24) {
++ throw new Error('type ' + str + ' has more than 24 characters');
+ }
+ if (str.match(charset_regex)) {
+ throw new Error('type ' + str + ' may only contain alphanumeric ' +
+@@ -170,8 +170,8 @@
+ if (str.length === 0) {
+ throw new Error('type string must not be empty');
+ }
+- if (str.length > 15) {
+- throw new Error('type ' + _uu(str) + ' has more than 14 characters');
++ if (str.length > 25) {
++ throw new Error('type ' + _uu(str) + ' has more than 24 characters');
+ }
+ if ( ! str.match(format_regex)) {
+ throw new Error('type ' + str + ' must start with an underscore ' +