search for: sid_file

Displaying 1 result from an estimated 1 matches for "sid_file".

Did you mean: id_file
2003 Dec 01
0
No subject
...http://ftp.samba.gr.jp/pub/samba-jp/samba-2.0.10-ja because lots of changes are needed to treat Mac OS X UTF8 correctly. If you do not, simply apply the following patch to compile. --- passdb.c 2001/05/03 19:11:43 1.1.1.1 +++ passdb.c 2001/06/11 16:01:50 1.1.1.1.26.1 @@ -843,7 +843,8 @@ pstrcpy(sid_file, lp_smb_passwd_file()); p = strrchr(sid_file, '/'); if(p != NULL) { - *++p = '\0'; + *(p+1) = '\0'; + if (p != sid_file) *p = '\0'; } if (!directory_exist(sid_file, NULL)) { @@ -854,6 +855,9 @@ } } + if (p != s...