Blame SOURCES/autofs-5.0.7-fix-automounter-support-on-parisc.patch

304803
autofs-5.0.7 - fix automounter support on parisc
304803
304803
From: Helge Deller <deller@gmx.de>
304803
304803
This patch fixes automounter support on the parisc architecture with
304803
64-bit kernel and 32-bit userspace.
304803
304803
Signed-off-by: Helge Deller <deller@gmx.de>
304803
---
304803
 daemon/automount.c |    1 +
304803
 1 file changed, 1 insertion(+)
304803
304803
diff --git a/daemon/automount.c b/daemon/automount.c
304803
index 4a3eb3d..4c651cf 100644
304803
--- a/daemon/automount.c
304803
+++ b/daemon/automount.c
304803
@@ -610,6 +610,7 @@ static size_t get_kpkt_len(void)
304803
 		if (strcmp(un.machine, "alpha") == 0 ||
304803
 		    strcmp(un.machine, "ia64") == 0 ||
304803
 		    strcmp(un.machine, "x86_64") == 0 ||
304803
+		    strcmp(un.machine, "parisc64") == 0 ||
304803
 		    strcmp(un.machine, "ppc64") == 0)
304803
 			pkt_len += 4;
304803