From dc00df2adddfe23e5ebb61f9f7c16ec7d3f2c03e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 27 Jul 2012 12:56:22 +1000 Subject: lib/param: Rename "socket address" to "nbt client socket address" to clarify role This parameter is only used in our NBT client code and in nmbd as a fallback when we fail to select a better interface from "interfaces" to use directly. Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Fri Jul 27 12:16:25 CEST 2012 on sn-devel-104 --- lib/param/param_table.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'lib/param/param_table.c') diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 7cbc15cb0b..a793695083 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -3476,11 +3476,20 @@ static struct parm_struct parm_table[] = { .enum_list = NULL, .flags = FLAG_ADVANCED, }, + { + .label = "nbt client socket address", + .type = P_STRING, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(nbt_client_socket_address), + .special = NULL, + .enum_list = NULL, + .flags = FLAG_ADVANCED | FLAG_DEPRECATED, + }, { .label = "socket address", .type = P_STRING, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(szSocketAddress), + .offset = GLOBAL_VAR(nbt_client_socket_address), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_DEPRECATED, -- cgit