diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-09-30 10:52:48 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-09-30 10:52:48 +0000 |
commit | 88460e63c5934ab3d00db2a8521d5ebd33dbefc3 (patch) | |
tree | c15e484d30a62c9f06b375ddbd22e7c52c640423 /source3/param | |
parent | 8883e74ed44f5b25cc8f5a06e65a525587036f6c (diff) | |
download | samba-88460e63c5934ab3d00db2a8521d5ebd33dbefc3.tar.gz samba-88460e63c5934ab3d00db2a8521d5ebd33dbefc3.tar.bz2 samba-88460e63c5934ab3d00db2a8521d5ebd33dbefc3.zip |
set the default fstype for IPC$ to "IPC". I'm not sure if this will
make any difference, but it is the right thing to do.
(This used to be commit a655a8a0510b0277727205394b093c580280eb55)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index a0e43150b9..b0b793df60 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1437,6 +1437,7 @@ static BOOL lp_add_ipc(void) string_set(&iSERVICE(i).szPath,tmpdir()); string_set(&iSERVICE(i).szUsername,""); string_set(&iSERVICE(i).comment,comment); + string_set(&iSERVICE(i).fstype,"IPC"); iSERVICE(i).status = False; iSERVICE(i).iMaxConnections = 0; iSERVICE(i).bAvailable = True; |