summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2008-09-24 09:53:21 -0700
committerKarolin Seeger <kseeger@samba.org>2008-09-24 11:09:04 -0700
commit9cf1a68977d56d342ca7dbe8f07c725221dc1148 (patch)
treedbe727238e78516ddb6ba233247f45f8ee635e99 /source3/param
parent291ca9384345d8c674a96f3671d44ba09af8b787 (diff)
downloadsamba-9cf1a68977d56d342ca7dbe8f07c725221dc1148.tar.gz
samba-9cf1a68977d56d342ca7dbe8f07c725221dc1148.tar.bz2
samba-9cf1a68977d56d342ca7dbe8f07c725221dc1148.zip
printing: Rename new parameter "cups timeout" to "cups connection timeout".
Karolin
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index db9e990e64..87af7a3411 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -341,7 +341,7 @@ struct global {
int iKeepalive;
int iminreceivefile;
struct param_opt_struct *param_opt;
- int cups_timeout;
+ int cups_connection_timeout;
};
static struct global Globals;
@@ -2597,10 +2597,10 @@ static struct parm_struct parm_table[] = {
.flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
},
{
- .label = "cups timeout",
+ .label = "cups connection timeout",
.type = P_INTEGER,
.p_class = P_GLOBAL,
- .ptr = &Globals.cups_timeout,
+ .ptr = &Globals.cups_connection_timeout,
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED,
@@ -4805,7 +4805,7 @@ static void init_globals(bool first_time_only)
* to never expire, though, when this runs out the afs client will
* forget the token. Set to 0 to get NEVERDATE.*/
Globals.iAfsTokenLifetime = 604800;
- Globals.cups_timeout = CUPS_DEFAULT_TIMEOUT;
+ Globals.cups_connection_timeout = CUPS_DEFAULT_CONNECTION_TIMEOUT;
/* these parameters are set to defaults that are more appropriate
for the increasing samba install base:
@@ -5247,7 +5247,7 @@ FN_GLOBAL_LIST(lp_svcctl_list, &Globals.szServicesList)
FN_LOCAL_STRING(lp_cups_options, szCupsOptions)
FN_GLOBAL_STRING(lp_cups_server, &Globals.szCupsServer)
FN_GLOBAL_STRING(lp_iprint_server, &Globals.szIPrintServer)
-FN_GLOBAL_INTEGER(lp_cups_timeout, &Globals.cups_timeout)
+FN_GLOBAL_INTEGER(lp_cups_connection_timeout, &Globals.cups_connection_timeout)
FN_GLOBAL_CONST_STRING(lp_ctdbd_socket, &Globals.ctdbdSocket)
FN_GLOBAL_LIST(lp_cluster_addresses, &Globals.szClusterAddresses)
FN_GLOBAL_BOOL(lp_clustering, &Globals.clustering)