summaryrefslogtreecommitdiffstats
path: root/source/smbd/server.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-05-31 15:13:29 +0000
committerAndrew Tridgell <tridge@samba.org>1996-05-31 15:13:29 +0000
commit635b56f19c817527c52e9bbde31faa6a8a47777b (patch)
tree87584bdc0ee4e001d57880f33b7e0dce7bd493b2 /source/smbd/server.c
parent3e9750cc2713da7c3d4beb24217f94c033e2fee5 (diff)
downloadsamba-635b56f19c817527c52e9bbde31faa6a8a47777b.tar.gz
samba-635b56f19c817527c52e9bbde31faa6a8a47777b.tar.xz
samba-635b56f19c817527c52e9bbde31faa6a8a47777b.zip
Lots of changes!
- add faq info on NT printer handling - add "delete readonly" option to help rcs users - add stuff to man pages on new printer options - add "proxy name resolution" option - add "command string" -c option to smbclient (thanks Ken) - split time functions into time.c - rearrange the quotas stuff a bit and fix some bugs - complete rehash of the time handling code thanks to Paul Eggert - fix nmblookup output a bit - add plp print queue parsing from Bertrand Wallrich
Diffstat (limited to 'source/smbd/server.c')
-rw-r--r--source/smbd/server.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/smbd/server.c b/source/smbd/server.c
index 5ef92777b24..3140d3ff84c 100644
--- a/source/smbd/server.c
+++ b/source/smbd/server.c
@@ -2456,6 +2456,8 @@ int make_connection(char *service,char *user,char *password, int pwlen, char *de
int find_free_file(void )
{
int i;
+ /* we start at 1 here for an obscure reason I can't now remember,
+ but I think is important :-) */
for (i=1;i<MAX_OPEN_FILES;i++)
if (!Files[i].open)
return(i);