summaryrefslogtreecommitdiff
path: root/meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-12-30 10:12:14 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-12-30 10:12:14 +0000
commit59ad91a880695808c5b4efe88fa46286662e4cfc (patch)
tree52a40efec182c732157be1553609c9bb0d74892d /meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch
parentacf3b8e884657101b736d32f4216655b96659f49 (diff)
downloadopenembedded-core-59ad91a880695808c5b4efe88fa46286662e4cfc.tar.gz
openembedded-core-59ad91a880695808c5b4efe88fa46286662e4cfc.tar.bz2
openembedded-core-59ad91a880695808c5b4efe88fa46286662e4cfc.tar.xz
openembedded-core-59ad91a880695808c5b4efe88fa46286662e4cfc.zip
unfs-server: Fix PV so it obeys the version number policy
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch')
-rw-r--r--meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch b/meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch
deleted file mode 100644
index 1f10d3c94..000000000
--- a/meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/013-mntpathlen.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-# Patch origin: nfs-server source RPM from openSUSE 10.3
-
---- nfs-server/mountd.c 2006/01/12 14:00:13 1.13
-+++ nfs-server/mountd.c 2006/01/12 14:37:35
-@@ -76,7 +76,7 @@
- 0
- };
-
--char argbuf[MNTPATHLEN + 1];
-+char argbuf[PATH_MAX + 1];
- char *auth_file = NULL;
- static char *program_name;
- int need_reinit = 0;
-@@ -97,6 +97,9 @@
- /*
- * MOUNT
- * This is what the whole protocol is all about
-+ *
-+ * Note: librpc gets us MNTPATHLEN length strings, but realpath
-+ * needs a PATH_MAX length output buffer.
- */
- fhstatus *
- mountproc_mnt_1_svc(dirpath *argp, struct svc_req *rqstp)
-@@ -105,7 +108,7 @@
- struct stat stbuf;
- nfs_client *cp;
- nfs_mount *mp;
-- char nargbuf[MNTPATHLEN + 1];
-+ char nargbuf[PATH_MAX + 1];
- int saved_errno = 0;
- #ifdef WANT_LOG_MOUNTS
- struct in_addr addr;