Skip to content

Commit

Permalink
Fix setting of character set
Browse files Browse the repository at this point in the history
  • Loading branch information
spl237 committed Oct 30, 2023
1 parent 963cfad commit 4a801cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
piwiz (0.65) bookworm; urgency=medium

* Fix setting of character set

-- Simon Long <[email protected]> Mon, 30 Oct 2023 07:54:35 +0000

piwiz (0.64) bookworm; urgency=medium

* Add warnings if skipping updates
Expand Down
2 changes: 1 addition & 1 deletion src/piwiz.c
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ static gpointer set_locale (gpointer data)
if (g_strcmp0 (init_country, cc) || g_strcmp0 (init_lang, lc))
{
reboot = TRUE;
vsystem ("sudo raspi-config nonint do_change_locale_rc_gui %s_%s", lc, cc);
vsystem ("sudo raspi-config nonint do_change_locale_rc_gui %s_%s%s", lc, cc, ext);
if (init_country)
{
g_free (init_country);
Expand Down

0 comments on commit 4a801cb

Please sign in to comment.