diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-07-25 13:19:14 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-07-25 13:19:14 +0000 |
commit | df00e5dceae91f6ffca77704c4517b91fd796d32 (patch) | |
tree | 4538495eaca2bdfc36423c483a177e96c54aa4aa | |
parent | 2e339403605177b15d5185a8fdd1b06f3f043168 (diff) | |
download | samba-df00e5dceae91f6ffca77704c4517b91fd796d32.tar.gz samba-df00e5dceae91f6ffca77704c4517b91fd796d32.tar.xz samba-df00e5dceae91f6ffca77704c4517b91fd796d32.zip |
need to push smb_search strings in client charset
-rw-r--r-- | source/lib/util.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/lib/util.c b/source/lib/util.c index d45a8052001..282e0e43fa0 100644 --- a/source/lib/util.c +++ b/source/lib/util.c @@ -431,22 +431,22 @@ void make_dir_struct(char *buf,char *mask,char *fname,SMB_OFF_T size,int mode,ti if ((p = strchr_m(mask2,'.')) != NULL) { *p = 0; - memcpy(buf+1,mask2,MIN(strlen(mask2),8)); - memcpy(buf+9,p+1,MIN(strlen(p+1),3)); + push_ascii(buf+1,mask2,8, 0); + push_ascii(buf+9,p+1,3, 0); *p = '.'; } else - memcpy(buf+1,mask2,MIN(strlen(mask2),11)); + push_ascii(buf+1,mask2,11, 0); memset(buf+21,'\0',DIR_STRUCT_SIZE-21); CVAL(buf,21) = mode; put_dos_date(buf,22,date); SSVAL(buf,26,size & 0xFFFF); SSVAL(buf,28,(size >> 16)&0xFFFF); - StrnCpy(buf+30,fname,12); + push_ascii(buf+30,fname,12, 0); if (!case_sensitive) strupper(buf+30); - DEBUG(8,("put name [%s] into dir struct\n",buf+30)); + DEBUG(8,("put name [%s] from [%s] into dir struct\n",buf+30, fname)); } |