1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

make sure that we expand %H (from vl); bug 612

(This used to be commit a77f592430)
This commit is contained in:
Gerald Carter 2003-11-05 04:34:31 +00:00
parent 3886d6a7a1
commit 41316b5255

View File

@ -529,6 +529,9 @@ char *alloc_sub_basic(const char *smb_name, const char *str)
else
t = realloc_string_sub(t, "%L", global_myname());
break;
case 'N':
t = realloc_string_sub(t, "%N", automount_server(smb_name));
break;
case 'M' :
t = realloc_string_sub(t, "%M", client_name());
break;