diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-12 23:52:49 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-12 23:52:49 -0400 |
commit | 6539791c7da12ab9e1dcca445faf1cd0b0bb302a (patch) | |
tree | aedf2919c91da3e05c0ee95965a6597b5956bfca /src | |
parent | da21718ab320f144e22b6b1147fc8b5d6401870a (diff) | |
parent | c25fa4fb5e58e20ce97c3747c05d26307a70baaa (diff) | |
download | bfs-6539791c7da12ab9e1dcca445faf1cd0b0bb302a.tar.xz |
Merge tag '3.0.4'
Diffstat (limited to 'src')
-rw-r--r-- | src/bfstd.c | 2 | ||||
-rw-r--r-- | src/config.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bfstd.c b/src/bfstd.c index e9214d4..a4ae439 100644 --- a/src/bfstd.c +++ b/src/bfstd.c @@ -301,7 +301,7 @@ const char *xstrerror(int errnum) { } if (copy != (locale_t)0) { - ret = strerror_l(errnum, loc); + ret = strerror_l(errnum, copy); } if (loc == LC_GLOBAL_LOCALE) { diff --git a/src/config.h b/src/config.h index 980980a..38ca69b 100644 --- a/src/config.h +++ b/src/config.h @@ -22,7 +22,7 @@ # define BFS_COMMAND "bfs" #endif #ifndef BFS_VERSION -# define BFS_VERSION "3.0.3" +# define BFS_VERSION "3.0.4" #endif #ifndef BFS_HOMEPAGE # define BFS_HOMEPAGE "https://tavianator.com/projects/bfs.html" |