diff options
author | hosokawa <hosokawa@FreeBSD.org> | 1999-07-12 08:38:14 +0000 |
---|---|---|
committer | hosokawa <hosokawa@FreeBSD.org> | 1999-07-12 08:38:14 +0000 |
commit | a092e3819eb27e152639987592cccf3e8574b3e6 (patch) | |
tree | 0f5143d73eb030141da0e26d7889bebf561e2374 /net/samba-devel/files | |
parent | 1553ecf4f531d90553ab37d96451845d09de5ebd (diff) | |
download | FreeBSD-ports-a092e3819eb27e152639987592cccf3e8574b3e6.zip FreeBSD-ports-a092e3819eb27e152639987592cccf3e8574b3e6.tar.gz |
PR: ports/8276
Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
Samba's WINS database was cleaned during reboot.
Diffstat (limited to 'net/samba-devel/files')
-rw-r--r-- | net/samba-devel/files/patch-ag | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/samba-devel/files/patch-ag b/net/samba-devel/files/patch-ag new file mode 100644 index 0000000..560c3c9 --- /dev/null +++ b/net/samba-devel/files/patch-ag @@ -0,0 +1,20 @@ +--- nmbd/nmbd_winsserver.c.orig Fri Apr 2 05:00:46 1999 ++++ nmbd/nmbd_winsserver.c Mon Jul 12 17:08:28 1999 +@@ -152,7 +152,7 @@ + start_async_dns(); + #endif + +- pstrcpy(fname,lp_lockdir()); ++ pstrcpy(fname,"/var/db"); + trim_string(fname,NULL,"/"); + pstrcat(fname,"/"); + pstrcat(fname,WINS_LIST); +@@ -1551,7 +1551,7 @@ + } + } + +- slprintf(fname,sizeof(fname),"%s/%s", lp_lockdir(), WINS_LIST); ++ slprintf(fname,sizeof(fname),"%s/%s", "/var/db", WINS_LIST); + string_sub(fname,"//", "/"); + slprintf(fnamenew,sizeof(fnamenew),"%s.%u", fname, (unsigned int)getpid()); + |