This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=9c1413408a4d9c5d3f1b76b0324361f6deee0d98 commit 9c1413408a4d9c5d3f1b76b0324361f6deee0d98 (HEAD -> master) Author: Guillem Jover <[email protected]> AuthorDate: Wed Feb 12 02:28:11 2020 +0100 libdpkg: Fix Doxygen comments --- debian/changelog | 1 + lib/dpkg/dir.c | 1 + lib/dpkg/version.c | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index e4b415209..a065cf71e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -201,6 +201,7 @@ dpkg (1.20.0) UNRELEASED; urgency=medium - libdpkg: Use a new DPKG_STATIC_CAST macro that works in C and C++. - libdpkg: Move printing of errno into dpkg_error_set(). - libdpkg: Use a varbuf to store the problem messages per parsedb context. + - libdpkg: Fix Doxygen comments. * Build system: - Bump minimal Perl version to 5.24.1. - Add a serial versioning to the m4 files. diff --git a/lib/dpkg/dir.c b/lib/dpkg/dir.c index 5799ac056..f0175503d 100644 --- a/lib/dpkg/dir.c +++ b/lib/dpkg/dir.c @@ -63,6 +63,7 @@ dir_make_path_noalloc(char *dirname, mode_t mode) * Create the directory and all its parents if necessary. * * @param path The pathname to create directories for. + * @param mode The pathname mode. */ int dir_make_path(const char *path, mode_t mode) diff --git a/lib/dpkg/version.c b/lib/dpkg/version.c index 06c9448a9..e9bc4bb07 100644 --- a/lib/dpkg/version.c +++ b/lib/dpkg/version.c @@ -161,8 +161,8 @@ dpkg_version_compare(const struct dpkg_version *a, * @param rel The relation. * @param b The second version. * - * @retval true If the expression “a rel b” is true. - * @retval true If rel is #DPKG_RELATION_NONE. + * @retval true If rel is #DPKG_RELATION_NONE or the expression “a rel b” is + * true. * @retval false Otherwise. * * @warning If rel is not a valid relation, this function will terminate -- Dpkg.Org's dpkg

