From 1699ad4280296b5b8473f21d4fbe6d164a1a39be Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 26 Jun 2020 04:34:26 -0700 Subject: [PATCH] sysupdater: make GetUpdateInformation work on hardware. --- libstratosphere/source/fs/fs_sd_card.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libstratosphere/source/fs/fs_sd_card.cpp b/libstratosphere/source/fs/fs_sd_card.cpp index 66c22c2c..576116ef 100644 --- a/libstratosphere/source/fs/fs_sd_card.cpp +++ b/libstratosphere/source/fs/fs_sd_card.cpp @@ -43,10 +43,9 @@ namespace ams::fs { } - Result MountSdCard(const char *name) { /* Validate the mount name. */ - R_TRY(impl::CheckMountName(name)); + R_TRY(impl::CheckMountNameAllowingReserved(name)); /* Open the SD card. This uses libnx bindings. */ FsFileSystem fs;