]> git.sesse.net Git - plocate/log
plocate
3 months agoRelease plocate 1.1.22. master 1.1.22
Steinar H. Gunderson [Fri, 12 Jan 2024 15:18:01 +0000 (16:18 +0100)]
Release plocate 1.1.22.

3 months agoRevert "In updatedb, check prunepaths _before_ opening the directory."
Steinar H. Gunderson [Fri, 12 Jan 2024 15:15:22 +0000 (16:15 +0100)]
Revert "In updatedb, check prunepaths _before_ opening the directory."

This reverts commit 6e7991e5e0e043c412638c140cc9bb5610db4668.

David Caldwell pointed out that this breaks prunepaths that are not
directly on the root, since we now get /b before /a/a and this breaks
the expectation that the prunepaths list is iterated through in order.

3 months agoClean up some legacy logic in filesystem_is_excluded().
Steinar H. Gunderson [Sat, 6 Jan 2024 16:43:00 +0000 (17:43 +0100)]
Clean up some legacy logic in filesystem_is_excluded().

3 months agoBump version number.
Steinar H. Gunderson [Sat, 6 Jan 2024 16:36:10 +0000 (17:36 +0100)]
Bump version number.

3 months agoRelease plocate 1.1.21. 1.1.21
Steinar H. Gunderson [Sat, 6 Jan 2024 16:03:10 +0000 (17:03 +0100)]
Release plocate 1.1.21.

3 months agotmpwatch is not kept in sync with plocate.
Steinar H. Gunderson [Sat, 6 Jan 2024 15:11:44 +0000 (16:11 +0100)]
tmpwatch is not kept in sync with plocate.

3 months agoInclude prunepaths in bind mount pruning logic.
Steinar H. Gunderson [Sat, 6 Jan 2024 14:59:05 +0000 (15:59 +0100)]
Include prunepaths in bind mount pruning logic.

3 months agoRemove mount entries that will be pruned away due to prunefs.
Steinar H. Gunderson [Sat, 6 Jan 2024 14:52:04 +0000 (15:52 +0100)]
Remove mount entries that will be pruned away due to prunefs.

This should fix https://bugs.debian.org/1055450, where /home and
/run/schroot/mount/<something>/home were found to be duplicates
and the latter had the lower ID, but then /run was pruned out
and there was no indexing of the directory at all.

We can still see things like this in the form of prunepaths,
I believe.

3 months agoRemove the last remnants of translation support.
Steinar H. Gunderson [Sat, 6 Jan 2024 13:44:59 +0000 (14:44 +0100)]
Remove the last remnants of translation support.

3 months agoRemove an unneeded #include.
Steinar H. Gunderson [Sat, 6 Jan 2024 13:44:42 +0000 (14:44 +0100)]
Remove an unneeded #include.

3 months agoRemove some globals from the bind mount code.
Steinar H. Gunderson [Fri, 5 Jan 2024 07:49:04 +0000 (08:49 +0100)]
Remove some globals from the bind mount code.

3 months agoRemove obsolete comment about obstacks.
Steinar H. Gunderson [Thu, 4 Jan 2024 22:19:21 +0000 (23:19 +0100)]
Remove obsolete comment about obstacks.

3 months agoRemove some comments left over from mlocate.
Steinar H. Gunderson [Thu, 4 Jan 2024 22:18:38 +0000 (23:18 +0100)]
Remove some comments left over from mlocate.

We don't support gettext (although perhaps we should), so remove
some comments saying that we don't translate debug output.

3 months agoIn updatedb, check prunepaths _before_ opening the directory.
Steinar H. Gunderson [Thu, 4 Jan 2024 22:10:15 +0000 (23:10 +0100)]
In updatedb, check prunepaths _before_ opening the directory.

This makes sure we never even try to enter a directory if it is
in prunepaths (much like we already do with prunenames).

Inspired by https://bugs.debian.org/1025099, although it doesn't
fix that issue (we still open it before checking prunefs).

3 months agoBump version number.
Steinar H. Gunderson [Thu, 4 Jan 2024 22:09:27 +0000 (23:09 +0100)]
Bump version number.

3 months agoRelease plocate 1.1.20. 1.1.20
Steinar H. Gunderson [Sun, 31 Dec 2023 13:26:05 +0000 (14:26 +0100)]
Release plocate 1.1.20.

3 months agoAdd an undocumented flag --ignore-visibility.
Steinar H. Gunderson [Sun, 31 Dec 2023 10:29:43 +0000 (11:29 +0100)]
Add an undocumented flag --ignore-visibility.

This is mostly useful in the case where you are root, but the directories
in question no longer exist (or were never there to begin with) and you
still want to search in the database, or dump all of it using plocate ''.
Obviously, this needs to drop the sgid flag like --debug already does,
so we do that.

Using this together with -e/--existing doesn't make any sense,
but we don't have any explicit checks for it.

5 months agotimer: set AccuracySec to 6h and RandomizedDelaySec to 1h
Florian Schmaus [Wed, 8 Nov 2023 17:05:10 +0000 (18:05 +0100)]
timer: set AccuracySec to 6h and RandomizedDelaySec to 1h

The previous configuration caused the updatedb timer to run
potentially in the late morning. However this should be avoided to not
affect normal users. Furthermore, the low setting of AccuracySet to
20m caused a low chance of systemd to coalesce the updatedb timer with
other timers.

Increase the AccuracySec to 6h so that systemd is more likely to be
able to coalesce the timer with others in an effort to optimize power
consumption.

Furthermore, lower RandomizedDelaySec to 1h, to ensure that the
plocate updatedb job runs before 07:00 in the morning (and after
midnight).

5 months agoFix updatedb writing incomplete .db files under Termux.
Steinar H. Gunderson [Sat, 11 Nov 2023 23:18:58 +0000 (00:18 +0100)]
Fix updatedb writing incomplete .db files under Termux.

Report and patch by Grisha Levit; see

  https://unix.stackexchange.com/questions/739150/var-lib-plocate-plocate-db-has-version-4294967295-expected-0-or-1-please-reb/761248#761248

for the entire story.

6 months agoFix all relevant instances of wrong hyphens in man pages.
Steinar H. Gunderson [Mon, 23 Oct 2023 22:46:44 +0000 (00:46 +0200)]
Fix all relevant instances of wrong hyphens in man pages.

Cf. https://lwn.net/Articles/947941/, not escaping - will change
e.g. “plocate-build” to “plocate(Unicode dash)build”, which breaks
cut-and-paste. We had this right most places, but not all.

6 months agoBump version number.
Steinar H. Gunderson [Mon, 23 Oct 2023 22:46:40 +0000 (00:46 +0200)]
Bump version number.

10 months agoRelease plocate 1.1.19. 1.1.19
Steinar H. Gunderson [Fri, 9 Jun 2023 07:24:29 +0000 (09:24 +0200)]
Release plocate 1.1.19.

10 months agoRevert stray patch that inadvertently became part of 1.1.18.
Steinar H. Gunderson [Fri, 9 Jun 2023 07:24:02 +0000 (09:24 +0200)]
Revert stray patch that inadvertently became part of 1.1.18.

11 months agoFix man page for "--add-single-prunepath"
Tim Landscheidt [Mon, 8 May 2023 13:03:08 +0000 (13:03 +0000)]
Fix man page for "--add-single-prunepath"

The option "--add-single-prunepath" has no short version.

13 months agouring: always pair io_uring_get_probe_ring and io_uring_free_probe
Nick Alcock [Mon, 20 Mar 2023 11:48:51 +0000 (11:48 +0000)]
uring: always pair io_uring_get_probe_ring and io_uring_free_probe

As of liburing 2.4-to-be, liburing has ceased using malloc for its
probe allocations: it's concealed behind layers of confusing macros,
but io_uring_get_probe_ring() doesn't actually use libc's malloc
but ratehr its own __uring_alloc/__uring_free functions.  So it no
longer works to free() the return value of io_uring_get_probe_ring():
you have to use io_uring_free_probe() instead.

I am going to report this to liburing upstream as a possible bug,
but it is easy to work around in plocate in any case.

14 months agoAdd missing <inttypes.h> #include.
Steinar H. Gunderson [Wed, 8 Feb 2023 21:46:51 +0000 (22:46 +0100)]
Add missing <inttypes.h> #include.

Reported by sudhanshu goswami.

14 months agoFix missing newline in error message.
Steinar H. Gunderson [Sat, 28 Jan 2023 21:06:40 +0000 (22:06 +0100)]
Fix missing newline in error message.

14 months agoBump version number.
Steinar H. Gunderson [Sat, 28 Jan 2023 21:06:14 +0000 (22:06 +0100)]
Bump version number.

14 months agoRelease plocate 1.1.18. 1.1.18
Steinar H. Gunderson [Sat, 28 Jan 2023 20:45:19 +0000 (21:45 +0100)]
Release plocate 1.1.18.

15 months agoCorrect the plocate-build man page around --require-visibility.
Steinar H. Gunderson [Thu, 5 Jan 2023 17:25:08 +0000 (18:25 +0100)]
Correct the plocate-build man page around --require-visibility.

15 months agoSupport the --require-visibility flag in plocate-build.
Steinar H. Gunderson [Wed, 4 Jan 2023 22:46:01 +0000 (23:46 +0100)]
Support the --require-visibility flag in plocate-build.

15 months agoFix a deprecation warning when running meson.
Steinar H. Gunderson [Tue, 3 Jan 2023 23:00:11 +0000 (00:00 +0100)]
Fix a deprecation warning when running meson.

15 months agoFix display of rlim_t in ulimit error message on 32-bit platforms.
Steinar H. Gunderson [Tue, 3 Jan 2023 22:58:13 +0000 (23:58 +0100)]
Fix display of rlim_t in ulimit error message on 32-bit platforms.

Reported by Jakub Wilk (Debian bug #1027702).

15 months agoBump version number.
Steinar H. Gunderson [Tue, 3 Jan 2023 22:51:29 +0000 (23:51 +0100)]
Bump version number.

17 months agoRelease plocate 1.1.17. 1.1.17
Steinar H. Gunderson [Mon, 21 Nov 2022 17:26:34 +0000 (18:26 +0100)]
Release plocate 1.1.17.

17 months agoReturn 1 if no matches were found
Clément Pit-Claudel [Sun, 6 Nov 2022 20:09:53 +0000 (12:09 -0800)]
Return 1 if no matches were found

* plocate.1: Document this new behavior.
* plocate.cpp (do_search_file, main): Exit with code 1 if no matches were found.

This behavior is consistent with that of mlocate except with --limit=0, which
plocate rejects.

17 months agoAdd missing <locale.h>.
Steinar H. Gunderson [Wed, 26 Oct 2022 22:38:37 +0000 (00:38 +0200)]
Add missing <locale.h>.

Reported by Maciej Adamczyk.

18 months agoFix a Meson warning.
Steinar H. Gunderson [Sat, 15 Oct 2022 13:46:03 +0000 (15:46 +0200)]
Fix a Meson warning.

18 months agoUse unique_lock CTAD.
Steinar H. Gunderson [Sat, 15 Oct 2022 13:44:47 +0000 (15:44 +0200)]
Use unique_lock CTAD.

It's not useful to write unique_lock<mutex> in C++17;
unique_lock will do.

21 months agoRemove dependency on non-POSIX header error.h.
Steinar H. Gunderson [Wed, 13 Jul 2022 20:31:54 +0000 (22:31 +0200)]
Remove dependency on non-POSIX header error.h.

This helps compatibility with certain configurations of musl libc.
Note that the output format on updatedb.conf errors will change somewhat,
and only the first one will be reported followed by immediate exit
(unlike earlier, where all updatedb.conf errors would be output before exit).

Based on a patch by Alfred Persson Forsberg.

22 months agoAdd a missing #include.
Steinar H. Gunderson [Sat, 25 Jun 2022 08:01:49 +0000 (10:01 +0200)]
Add a missing #include.

Taken from the Alpine Linux packaging; seems to be for statx()
(presumably on musl libc).

22 months agoBump version number.
Steinar H. Gunderson [Sat, 25 Jun 2022 08:01:35 +0000 (10:01 +0200)]
Bump version number.

22 months agoRelease plocate 1.1.16. 1.1.16
Steinar H. Gunderson [Sat, 4 Jun 2022 13:17:11 +0000 (15:17 +0200)]
Release plocate 1.1.16.

22 months agoFix an issue where updatedb would stop on certain CIFS filesystems.
Steinar H. Gunderson [Sun, 29 May 2022 09:11:10 +0000 (11:11 +0200)]
Fix an issue where updatedb would stop on certain CIFS filesystems.

Reported by rollopack.

2 years agoCorrect a comment.
Steinar H. Gunderson [Wed, 23 Feb 2022 23:43:38 +0000 (00:43 +0100)]
Correct a comment.

2 years agoBump version number.
Steinar H. Gunderson [Tue, 22 Feb 2022 23:01:47 +0000 (00:01 +0100)]
Bump version number.

2 years agoRelease plocate 1.1.15. 1.1.15
Steinar H. Gunderson [Mon, 31 Jan 2022 20:29:10 +0000 (21:29 +0100)]
Release plocate 1.1.15.

2 years agoIf stat() on a directory check, see if it's an excluded filesystem.
Steinar H. Gunderson [Sun, 30 Jan 2022 20:13:57 +0000 (21:13 +0100)]
If stat() on a directory check, see if it's an excluded filesystem.

Fixes an issues where a networked filesystem on the exclude list being down
causes updatedb to abort entirely. Reported by Kevin Locke.

2 years agoWhen stat() in updatedb fails, report the path instead of just the parent directory.
Steinar H. Gunderson [Sun, 30 Jan 2022 19:10:34 +0000 (20:10 +0100)]
When stat() in updatedb fails, report the path instead of just the parent directory.

Reported by Kevin Locke.

2 years agoMake entire path for plocate database configurable
Eirik Nygaard [Thu, 27 Jan 2022 14:53:18 +0000 (15:53 +0100)]
Make entire path for plocate database configurable

2 years agoRevert "Make entire path for plocate database configurable"
Steinar H. Gunderson [Thu, 27 Jan 2022 13:00:16 +0000 (14:00 +0100)]
Revert "Make entire path for plocate database configurable"

Breaks configure.

This reverts commit d45acc377040e80dc517dbdcbf3cfcb06eab8c09.

2 years agoMake entire path for plocate database configurable
Eirik Nygaard [Sun, 23 Jan 2022 11:05:01 +0000 (12:05 +0100)]
Make entire path for plocate database configurable

2 years agoFix a comment in db.h.
Steinar H. Gunderson [Tue, 28 Dec 2021 13:20:04 +0000 (14:20 +0100)]
Fix a comment in db.h.

2 years agoRemove unneeded error.h include.
Steinar H. Gunderson [Tue, 28 Dec 2021 09:12:52 +0000 (10:12 +0100)]
Remove unneeded error.h include.

This improves compatibility with musl libc. Reported by Andrew Pirie.

2 years agoBump version number.
Steinar H. Gunderson [Tue, 28 Dec 2021 09:12:45 +0000 (10:12 +0100)]
Bump version number.

2 years agoRelease plocate 1.1.14. 1.1.14
Steinar H. Gunderson [Mon, 27 Dec 2021 10:10:12 +0000 (11:10 +0100)]
Release plocate 1.1.14.

2 years agoDocument interactions with Btrfs subvolume mounts better.
Steinar H. Gunderson [Mon, 27 Dec 2021 10:09:29 +0000 (11:09 +0100)]
Document interactions with Btrfs subvolume mounts better.

2 years agoCorrect plocate.1; the mlocate parameter is -A, not -a.
Steinar H. Gunderson [Mon, 20 Dec 2021 22:21:18 +0000 (23:21 +0100)]
Correct plocate.1; the mlocate parameter is -A, not -a.

2 years agoCorrect plocate.1; we have a native updatedb now.
Steinar H. Gunderson [Mon, 20 Dec 2021 22:21:09 +0000 (23:21 +0100)]
Correct plocate.1; we have a native updatedb now.

2 years agoRevert "Delete unused file."
Steinar H. Gunderson [Thu, 9 Dec 2021 15:20:27 +0000 (16:20 +0100)]
Revert "Delete unused file."

This reverts commit 2a8c3e471aef17b6841451d471a84b0937dcf8bf.

lib.cpp was not unused at all. Thanks to Manpreet Singh for noticing.

2 years agoCorrect the man page.
Steinar H. Gunderson [Tue, 30 Nov 2021 14:48:53 +0000 (15:48 +0100)]
Correct the man page.

updatedb.conf shares format between plocate and mlocate, but the
database file does not.

2 years agoDelete unused file.
Steinar H. Gunderson [Tue, 30 Nov 2021 10:26:23 +0000 (11:26 +0100)]
Delete unused file.

2 years agoDocument --add-single-prunepath in the man page.
Steinar H. Gunderson [Sat, 13 Nov 2021 09:37:11 +0000 (10:37 +0100)]
Document --add-single-prunepath in the man page.

2 years agoAdd an option --add-single-prunepath.
Steinar H. Gunderson [Fri, 12 Nov 2021 21:14:53 +0000 (22:14 +0100)]
Add an option --add-single-prunepath.

This makes it possible to prune a path with spaces in the file name,
which was previously impossible.

2 years agoFix a typo.
Steinar H. Gunderson [Fri, 12 Nov 2021 20:17:50 +0000 (21:17 +0100)]
Fix a typo.

2 years agoAdd ignored -A / --all parameter, for better mlocate compatibility.
Steinar H. Gunderson [Fri, 12 Nov 2021 19:14:00 +0000 (20:14 +0100)]
Add ignored -A / --all parameter, for better mlocate compatibility.

2 years agoBump version number.
Steinar H. Gunderson [Fri, 12 Nov 2021 19:11:04 +0000 (20:11 +0100)]
Bump version number.

2 years agoRelease plocate 1.1.13. 1.1.13
Steinar H. Gunderson [Sat, 6 Nov 2021 17:18:05 +0000 (18:18 +0100)]
Release plocate 1.1.13.

2 years agoFix an issue where non-ASCII characters would be wrongly escaped.
Steinar H. Gunderson [Fri, 29 Oct 2021 22:42:16 +0000 (00:42 +0200)]
Fix an issue where non-ASCII characters would be wrongly escaped.

This only happens on platforms with signed char. Reported by
COLIN Stéphane.

2 years agoOn wrong plocate.db header or version, output the filename in the error message.
Steinar H. Gunderson [Mon, 18 Oct 2021 07:42:00 +0000 (09:42 +0200)]
On wrong plocate.db header or version, output the filename in the error message.

Suggested by Trent W. Buck (Debian bug #996735).

2 years agoBump version number.
Steinar H. Gunderson [Mon, 18 Oct 2021 07:41:34 +0000 (09:41 +0200)]
Bump version number.

2 years agoRelease plocate 1.1.12. 1.1.12
Steinar H. Gunderson [Tue, 5 Oct 2021 21:05:55 +0000 (23:05 +0200)]
Release plocate 1.1.12.

2 years agoImplement the -N/--literal option.
Steinar H. Gunderson [Tue, 5 Oct 2021 21:02:09 +0000 (23:02 +0200)]
Implement the -N/--literal option.

This matches the GNU coreutils option to turn off the automatic
quoting of special characters when printing to a tty.

2 years agoSupport kernels that don't know about O_TMPFILE.
Steinar H. Gunderson [Thu, 23 Sep 2021 17:54:51 +0000 (19:54 +0200)]
Support kernels that don't know about O_TMPFILE.

Seemingly, this hit WSL1, making it impossible to run updatedb there.

2 years agoupdatedb is in section 8, not 1.
Steinar H. Gunderson [Thu, 16 Sep 2021 17:54:46 +0000 (19:54 +0200)]
updatedb is in section 8, not 1.

2 years agoUpdate the plocate-build man page to inform about the existence of the native updatedb.
Steinar H. Gunderson [Thu, 16 Sep 2021 17:02:42 +0000 (19:02 +0200)]
Update the plocate-build man page to inform about the existence of the native updatedb.

2 years agofix maybe-uninitialized warning in parse_trigrams
Arsen Arsenović [Mon, 23 Aug 2021 22:16:34 +0000 (00:16 +0200)]
fix maybe-uninitialized warning in parse_trigrams

2 years agoBump version number.
Steinar H. Gunderson [Sat, 4 Sep 2021 22:57:34 +0000 (00:57 +0200)]
Bump version number.

2 years agoRelease plocate 1.1.11. 1.1.11
Steinar H. Gunderson [Sat, 4 Sep 2021 22:50:01 +0000 (00:50 +0200)]
Release plocate 1.1.11.

2 years agoFix a crash on --existing and --regex together.
Steinar H. Gunderson [Sat, 4 Sep 2021 22:47:14 +0000 (00:47 +0200)]
Fix a crash on --existing and --regex together.

--regex (and other linear scans) would launch multiple threads,
but IOUringEngine isn't thread-safe. Since --existing is obscure,
and --regex is obscure, we solve this by simply making synchronous
stat() calls.

Reported by Michael Arndt.

2 years agoBump version number.
Steinar H. Gunderson [Mon, 23 Aug 2021 22:31:32 +0000 (00:31 +0200)]
Bump version number.

2 years agoRelease plocate 1.1.10. 1.1.10
Steinar H. Gunderson [Mon, 23 Aug 2021 20:02:36 +0000 (22:02 +0200)]
Release plocate 1.1.10.

2 years agoUse a more C++-standard way of suppressing the unused variable warning in submit_stat().
Steinar H. Gunderson [Mon, 23 Aug 2021 18:35:55 +0000 (20:35 +0200)]
Use a more C++-standard way of suppressing the unused variable warning in submit_stat().

2 years agoFix a warning with -Wvla (MB_CUR_MAX is not a compile-time constant).
Steinar H. Gunderson [Mon, 23 Aug 2021 18:29:23 +0000 (20:29 +0200)]
Fix a warning with -Wvla (MB_CUR_MAX is not a compile-time constant).

2 years agofix unused parameter warns in io_uring_engine.cpp
Arsen Arsenović [Mon, 23 Aug 2021 15:52:48 +0000 (17:52 +0200)]
fix unused parameter warns in io_uring_engine.cpp

2 years agoUnbreak compilation without systemd.
Steinar H. Gunderson [Mon, 23 Aug 2021 16:13:08 +0000 (18:13 +0200)]
Unbreak compilation without systemd.

2 years agoAdd missing unistd.h #include.
Steinar H. Gunderson [Mon, 23 Aug 2021 15:54:57 +0000 (17:54 +0200)]
Add missing unistd.h #include.

Adapted from the Void Linux repository, for musl compatibility.

2 years agoReplace canonicalize_file_name() with realpath().
Steinar H. Gunderson [Mon, 23 Aug 2021 15:53:34 +0000 (17:53 +0200)]
Replace canonicalize_file_name() with realpath().

canonicalize_file_name() is a GNU extension, while realpath() is POSIX.
Seemingly needed for musl. Adapted from the Void Linux repository.

2 years agoplocate: fix compilation without libiouring
Arsen Arsenović [Mon, 23 Aug 2021 08:07:01 +0000 (10:07 +0200)]
plocate: fix compilation without libiouring

2 years agoUnbreak the benchmark program.
Steinar H. Gunderson [Sat, 31 Jul 2021 13:37:54 +0000 (15:37 +0200)]
Unbreak the benchmark program.

2 years agoRelease plocate 1.1.9. 1.1.9
Steinar H. Gunderson [Wed, 18 Aug 2021 20:16:02 +0000 (22:16 +0200)]
Release plocate 1.1.9.

2 years agoRun clang-format.
Steinar H. Gunderson [Tue, 27 Jul 2021 20:16:01 +0000 (22:16 +0200)]
Run clang-format.

2 years agoSupport the -e (--existing) option from mlocate.
Steinar H. Gunderson [Tue, 27 Jul 2021 14:19:01 +0000 (16:19 +0200)]
Support the -e (--existing) option from mlocate.

This can be useful if recently having deleted some files,
and not wanting to do a database rebuild. Note that we don't
support the --nofollow option (--follow is the default),
since it's not clear what it would be useful for, and the mlocate
source code says it “looks like a historical accident”.

2 years agoSend the result value of the stat to the callback.
Steinar H. Gunderson [Tue, 27 Jul 2021 13:45:27 +0000 (15:45 +0200)]
Send the result value of the stat to the callback.

2 years agoMake it possible to set systemunitdir explicitly.
Steinar H. Gunderson [Mon, 21 Jun 2021 19:21:53 +0000 (21:21 +0200)]
Make it possible to set systemunitdir explicitly.

This allows a distributor to hard-code the systemd unit directory
instead of relying on systemd-dev. Based on a patch by
Zbigniew Jędrzejewski-Szmek.

2 years agoBump version number.
Steinar H. Gunderson [Mon, 21 Jun 2021 18:57:44 +0000 (20:57 +0200)]
Bump version number.

2 years agoRelease plocate 1.1.8. 1.1.8
Steinar H. Gunderson [Sat, 12 Jun 2021 12:27:21 +0000 (14:27 +0200)]
Release plocate 1.1.8.

2 years agoFix a printing issue when outputting to a block-buffered pipe from a forked child...
Steinar H. Gunderson [Sat, 5 Jun 2021 17:31:12 +0000 (19:31 +0200)]
Fix a printing issue when outputting to a block-buffered pipe from a forked child (ie., multiple databases).

3 years agoFix a typo in try_complete_pread().
Steinar H. Gunderson [Wed, 7 Apr 2021 20:04:49 +0000 (22:04 +0200)]
Fix a typo in try_complete_pread().

Pointed out by Taj Khattra.

3 years agoBump version number.
Steinar H. Gunderson [Wed, 7 Apr 2021 20:04:40 +0000 (22:04 +0200)]
Bump version number.