From 3dc11a77cfbf92555f971837fb3c54b07352eb3b Mon Sep 17 00:00:00 2001
From: Bruce Dubbs <bdubbs@linuxfromscratch.org>
Date: Sun, 11 May 2025 23:38:57 -0500
Subject: [PATCH] Fix currency fo ropenssl.

---
 lfs-latest-git.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lfs-latest-git.php b/lfs-latest-git.php
index a6723e909..d43431d29 100644
--- a/lfs-latest-git.php
+++ b/lfs-latest-git.php
@@ -279,7 +279,7 @@ if ( $package == "zstd"       ) $dirpath = github("facebook/zstd");
      return find_max( $lines, "/tag_name/", '/^.*v([\d\.]+).*$/' );
 
   if ( $package == "openssl" )
-     return find_max( $lines, "/name.:/", "/^.*OpenSSL ([\d\.]+\d).*$/" );
+     return find_max( $lines, "/name:/", "/^.*OpenSSL ([\d\.]+\d).*$/" );
 
   if ( $package == "Python" )
      return find_max( $lines, "/Python 3/", "/^.*Python (3[\d\.]*\d) .*$/" );