4f911a8c6a
release notes for details http://www.slimdevices.com/Changelog6.html. Fix a longstanding bug that caused mDNS support to not actually work. Take advantage of improvements in rc.subr to reduce the amount of code in the shutdown path including removing the pgrep dependancy.
22 lines
469 B
Perl
22 lines
469 B
Perl
|
|
$FreeBSD$
|
|
|
|
--- Slim/Networking/mDNS.pm.orig
|
|
+++ Slim/Networking/mDNS.pm
|
|
@@ -100,7 +100,6 @@
|
|
|
|
print CONF "$name\n";
|
|
print CONF "$service\n";
|
|
- print CONF "TXT\n";
|
|
print CONF "$port\n";
|
|
print CONF "\n";
|
|
}
|
|
@@ -113,7 +112,7 @@
|
|
return;
|
|
}
|
|
|
|
- my $command = sprintf("%s -d -f %s -P %s", $mDNSBin, $confFile, $pidFile);
|
|
+ my $command = sprintf("%s -b -f %s -P %s", $mDNSBin, $confFile, $pidFile);
|
|
|
|
$::d_mdns && msg("mDNS: About to run: $command\n");
|
|
|