diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-10-24 00:09:08 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-10-24 00:09:08 +0000 |
commit | 08d00eb68ee93eaead0f3bbaabc3d89540e0818e (patch) | |
tree | 710ccb9b7720c18394876a415803b4a414df8b26 /source3/param | |
parent | 99ad4508a086205a7801e88a2f74ad6fe839431f (diff) | |
download | samba-08d00eb68ee93eaead0f3bbaabc3d89540e0818e.tar.gz samba-08d00eb68ee93eaead0f3bbaabc3d89540e0818e.tar.bz2 samba-08d00eb68ee93eaead0f3bbaabc3d89540e0818e.zip |
- added support for TMPDIR env variable
- fixed fault.c for linux 2.1
- put back in the FIND_SELF failing code
- cleaned up casts in encryption
(This used to be commit 3af04f1580b2569c0a4f2549bf6352c7a25afa0d)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 34c9f27129..b65aead773 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -994,7 +994,7 @@ static BOOL lp_add_ipc(void) sprintf(comment,"IPC Service (%s)",lp_serverstring()); - string_set(&iSERVICE(i).szPath,"/tmp"); + string_set(&iSERVICE(i).szPath,tmpdir()); string_set(&iSERVICE(i).szUsername,""); string_set(&iSERVICE(i).comment,comment); iSERVICE(i).status = False; @@ -1228,8 +1228,8 @@ static BOOL service_ok(int iService) if (iSERVICE(iService).szPath[0] == '\0' && strwicmp(iSERVICE(iService).szService,HOMES_NAME) != 0) { - DEBUG(0,("No path in service %s - using /tmp\n",iSERVICE(iService).szService)); - string_set(&iSERVICE(iService).szPath,"/tmp"); + DEBUG(0,("No path in service %s - using %s\n",iSERVICE(iService).szService,tmpdir())); + string_set(&iSERVICE(iService).szPath,tmpdir()); } /* If a service is flagged unavailable, log the fact at level 0. */ |