public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: Jonathan Wakely <redi@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc r13-5004] libstdc++: Support single components in name of chrono::current_zone() [PR108211]
Date: Thu,  5 Jan 2023 00:53:06 +0000 (GMT)	[thread overview]
Message-ID: <20230105005306.54B8E3858434@sourceware.org> (raw)

https://gcc.gnu.org/g:56be1970765b6302de19977790a537d6feaaa34b

commit r13-5004-g56be1970765b6302de19977790a537d6feaaa34b
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Wed Jan 4 20:49:59 2023 +0000

    libstdc++: Support single components in name of chrono::current_zone() [PR108211]
    
    We currently only handle the case where /etc/localtime is a symlink to a
    path like ".../Etc/UTC" and fail for ".../UTC". This makes both work.
    
    libstdc++-v3/ChangeLog:
    
            PR libstdc++/108211
            * src/c++20/tzdb.cc (chrono::current_zone()): Check for zone
            using only last component of the name.

Diff:
---
 libstdc++-v3/src/c++20/tzdb.cc | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/libstdc++-v3/src/c++20/tzdb.cc b/libstdc++-v3/src/c++20/tzdb.cc
index 6772517d55a..9103b159400 100644
--- a/libstdc++-v3/src/c++20/tzdb.cc
+++ b/libstdc++-v3/src/c++20/tzdb.cc
@@ -1501,8 +1501,11 @@ namespace std::chrono
 	if (std::distance(first, last) > 2)
 	  {
 	    --last;
-	    string name = std::prev(last)->string() + '/';
-	    name += last->string();
+	    string name = last->string();
+	    if (auto tz = do_locate_zone(this->zones, this->links, name))
+	      return tz;
+	    --last;
+	    name = last->string() + '/' + name;
 	    if (auto tz = do_locate_zone(this->zones, this->links, name))
 	      return tz;
 	  }

                 reply	other threads:[~2023-01-05  0:53 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230105005306.54B8E3858434@sourceware.org \
    --to=redi@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).