components/ntp/patches/40-ntpwait.patch
branchs11u2-sru
changeset 3575 6124cc35494e
parent 3560 5e2059b35bc2
child 3578 8bc0e1292180
--- a/components/ntp/patches/40-ntpwait.patch	Wed Dec 17 23:57:29 2014 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-This change allows ntp-wait to work with more versions
-of NTP, since the format changed slightly. It can be removed
-at the next upgrade since there will be no possibility 
-of running an older ntp with the old format.
-
---- scripts/ntp-wait.in
-+++ scripts/ntp-wait.in
-@@ -20,8 +20,8 @@
-     while(<Q>) {
-       chomp;
-       # the first line should be similar to:
--      # associd=0 status=0645 leap_none, sync_ntp, ...
--      if (/^asso?c?id=0 status=(\S{4}) (\S+), (\S+),/i) {
-+      # status=0645 leap_none, sync_ntp, ...
-+      if (/status=(\S{4}) (\S+), (\S+),/i) {
- 	my $status = $1;
- 	my $leap = $2;
- 	my $sync = $3;