nfs-utils: update to 2.6.2.
This commit is contained in:
parent
31029fe8e7
commit
de85b3d1cc
|
@ -1,44 +0,0 @@
|
|||
Index: utils/nfsdcltrack/nfsdcltrack.c
|
||||
===================================================================
|
||||
--- a/utils/nfsdcltrack/nfsdcltrack.c
|
||||
+++ b/utils/nfsdcltrack/nfsdcltrack.c
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
+#include <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
#include <getopt.h>
|
||||
#include <string.h>
|
||||
@@ -525,7 +526,7 @@ cltrack_gracedone(const char *timestr)
|
||||
if (*tail)
|
||||
return -EINVAL;
|
||||
|
||||
- xlog(D_GENERAL, "%s: grace done. gracetime=%ld", __func__, gracetime);
|
||||
+ xlog(D_GENERAL, "%s: grace done. gracetime=%" PRId64, __func__, (int64_t)gracetime);
|
||||
|
||||
ret = sqlite_remove_unreclaimed(gracetime);
|
||||
|
||||
Index: utils/nfsdcltrack/sqlite.c
|
||||
===================================================================
|
||||
--- a/utils/nfsdcltrack/sqlite.c
|
||||
+++ b/utils/nfsdcltrack/sqlite.c
|
||||
@@ -40,6 +40,7 @@
|
||||
|
||||
#include <dirent.h>
|
||||
#include <errno.h>
|
||||
+#include <inttypes.h>
|
||||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
@@ -544,8 +545,8 @@ sqlite_remove_unreclaimed(time_t grace_s
|
||||
int ret;
|
||||
char *err = NULL;
|
||||
|
||||
- ret = snprintf(buf, sizeof(buf), "DELETE FROM clients WHERE time < %ld",
|
||||
- grace_start);
|
||||
+ ret = snprintf(buf, sizeof(buf), "DELETE FROM clients WHERE time < %" PRId64,
|
||||
+ (int64_t)grace_start);
|
||||
if (ret < 0) {
|
||||
return ret;
|
||||
} else if ((size_t)ret >= sizeof(buf)) {
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'nfs-utils'
|
||||
pkgname=nfs-utils
|
||||
version=2.5.4
|
||||
revision=2
|
||||
version=2.6.2
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="--with-statduser=nobody --enable-gss --enable-nfsv4
|
||||
--with-statedir=/var/lib/nfs --enable-libmount-mount --enable-svcgss
|
||||
|
@ -13,7 +13,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
|
|||
license="GPL-2.0-or-later"
|
||||
homepage="https://www.linux-nfs.org/"
|
||||
distfiles="${KERNEL_SITE}/utils/${pkgname}/${version}/${pkgname}-${version}.tar.xz"
|
||||
checksum=51997d94e4c8bcef5456dd36a9ccc38e231207c4e9b6a9a2c108841e6aebe3dd
|
||||
checksum=5200873e81c4d610e2462fc262fe18135f2dbe78b7979f95accd159ae64d5011
|
||||
replaces="rpcgen>=0"
|
||||
|
||||
hostmakedepends="pkg-config libtirpc-devel rpcsvc-proto"
|
||||
|
|
Loading…
Reference in New Issue