>From 5507cb0c0b7c5bfdb30c48763db1983148bd814c Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 12 Apr 2012 14:12:41 +0200 Subject: [PATCH] autofs: Raise the maximum key length to PATH_MAX https://fedorahosted.org/sssd/ticket/1300 --- src/sss_client/autofs/sss_autofs.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/sss_client/autofs/sss_autofs.c b/src/sss_client/autofs/sss_autofs.c index e1810466bfdda417e04882b085f4e9315480c8ad..0125e6eece3bfcc69029e6a1e300159778eb72f3 100644 --- a/src/sss_client/autofs/sss_autofs.c +++ b/src/sss_client/autofs/sss_autofs.c @@ -24,9 +24,11 @@ #include "sss_client/autofs/sss_autofs_private.h" #include "sss_client/sss_cli.h" -/* Historically, autofs map and key names were just file names */ +/* Historically, autofs map names were just file names. Direct key names + * may be full directory paths + */ #define MAX_AUTOMNTMAPNAME_LEN NAME_MAX -#define MAX_AUTOMNTKEYNAME_LEN NAME_MAX +#define MAX_AUTOMNTKEYNAME_LEN PATH_MAX /* How many entries shall _sss_getautomntent_r retreive at once */ #define GETAUTOMNTENT_MAX_ENTRIES 512 -- 1.7.7.6