diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/substitute.c | 4 | ||||
-rw-r--r-- | source3/lib/util.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/lib/substitute.c b/source3/lib/substitute.c index c6d61bce95..884f038e6d 100644 --- a/source3/lib/substitute.c +++ b/source3/lib/substitute.c @@ -280,8 +280,8 @@ static char *automount_path(const char *user_name) #if (defined(HAVE_NETGROUP) && defined (WITH_AUTOMOUNT)) if (lp_nis_home_map()) { - char *home_path_start; - char *automount_value = automount_lookup(user_name); + const char *home_path_start; + const char *automount_value = automount_lookup(user_name); if(strlen(automount_value) > 0) { home_path_start = strchr_m(automount_value,':'); diff --git a/source3/lib/util.c b/source3/lib/util.c index 30886b0dd8..6b97491039 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1288,7 +1288,7 @@ static void strip_mount_options( pstring *str) *******************************************************************/ #ifdef WITH_NISPLUS_HOME -char *automount_lookup( char *user_name) +char *automount_lookup(const char *user_name) { static fstring last_key = ""; static pstring last_value = ""; @@ -1331,7 +1331,7 @@ char *automount_lookup( char *user_name) } #else /* WITH_NISPLUS_HOME */ -char *automount_lookup( char *user_name) +char *automount_lookup(const char *user_name) { static fstring last_key = ""; static pstring last_value = ""; |