1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

fix build with gcc 2.96 and --with-developer

(This used to be commit 11fc4da07f232c38e04c6443e5d0f829e16b0a18)
This commit is contained in:
Gerald Carter 2004-03-09 15:29:16 +00:00
parent 32665c36c8
commit f089f978c2

View File

@ -146,10 +146,10 @@ size_t srvstr_get_path(char *inbuf, char *dest, const char *src, size_t dest_len
{
pstring tmppath;
char *tmppath_ptr = tmppath;
size_t ret;
#ifdef DEVELOPER
SMB_ASSERT(dest_len == sizeof(pstring));
#endif
size_t ret;
if (src_len == 0) {
ret = srvstr_pull_buf( inbuf, tmppath_ptr, src, dest_len, flags);