summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2002-08-19 18:06:07 +0000
committerJelmer Vernooij <jelmer@samba.org>2002-08-19 18:06:07 +0000
commit64456bf3c037fb640d8a5f97cded2db5ca533bd3 (patch)
treedb13547a8a7ae6e18056a55ec933f5585f58a4e3 /source3/param
parent0386a8ac77fcb283f932fa514a16bd3d1aec7ad1 (diff)
downloadsamba-64456bf3c037fb640d8a5f97cded2db5ca533bd3.tar.gz
samba-64456bf3c037fb640d8a5f97cded2db5ca533bd3.tar.bz2
samba-64456bf3c037fb640d8a5f97cded2db5ca533bd3.zip
fix typo auth/auth_server.c
remove unused 'max packet' and 'packet size' options (This used to be commit 6a787a695db65688916464a9b0e2a9024b131eee)
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index a4ca6429d7..b3d1ac5030 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -171,7 +171,6 @@ typedef struct
int max_xmit;
int max_mux;
int max_open_files;
- int max_packet;
int pwordlevel;
int unamelevel;
int deadtime;
@@ -799,8 +798,6 @@ static struct parm_struct parm_table[] = {
{"max xmit", P_INTEGER, P_GLOBAL, &Globals.max_xmit, NULL, NULL, 0},
{"name resolve order", P_STRING, P_GLOBAL, &Globals.szNameResolveOrder, NULL, NULL, 0},
- {"max packet", P_INTEGER, P_GLOBAL, &Globals.max_packet, NULL, NULL, 0},
- {"packet size", P_INTEGER, P_GLOBAL, &Globals.max_packet, NULL, NULL, 0},
{"max ttl", P_INTEGER, P_GLOBAL, &Globals.max_ttl, NULL, NULL, 0},
{"max wins ttl", P_INTEGER, P_GLOBAL, &Globals.max_wins_ttl, NULL, NULL, 0},
{"min wins ttl", P_INTEGER, P_GLOBAL, &Globals.min_wins_ttl, NULL, NULL, 0},
@@ -1245,7 +1242,6 @@ static void init_globals(void)
Globals.bAlgorithmicRidBase = BASE_RID;
Globals.bLoadPrinters = True;
- Globals.max_packet = 65535;
Globals.mangled_stack = 50;
Globals.max_xmit = 65535;
Globals.max_mux = 50; /* This is *needed* for profile support. */