summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-12-21 09:07:22 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-12-21 09:07:22 +0100
commit96e0311365e91952d5168f858be86831c04a827b (patch)
tree46000c69ce1b72bb542e0ce14b47778e9fccc5e2
parent7f0c37eb50110b62320e9d064e85b573a732265a (diff)
; Prefer HTTPS to HTTP in URLsexternals/metar
-rw-r--r--metar.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/metar.el b/metar.el
index 2b3afb8..a2ccb26 100644
--- a/metar.el
+++ b/metar.el
@@ -18,7 +18,7 @@
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
@@ -83,7 +83,7 @@
(const :tag "Degree Kelvin" degK)
(const :tag "Degree Fahrenheit" degF)))))
-(defcustom metar-stations-info-url "http://tgftp.nws.noaa.gov/data/nsd_cccc.txt"
+(defcustom metar-stations-info-url "https://tgftp.nws.noaa.gov/data/nsd_cccc.txt"
"URL to use for retrieving station meta information."
:group 'metar
:type 'string)
@@ -279,7 +279,7 @@ It must have the signature of `math-convert-units', which is the default."
pure))))
(defcustom metar-url
- "http://tgftp.nws.noaa.gov/data/observations/metar/stations/%s.TXT"
+ "https://tgftp.nws.noaa.gov/data/observations/metar/stations/%s.TXT"
"URL used to fetch station specific information.
%s is replaced with the 4 letter station code."
:group 'metar