diff options
author | Jeremy Allison <jra@samba.org> | 1998-08-24 21:49:10 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-08-24 21:49:10 +0000 |
commit | 8afc9c80ac11649f06e5517d819dbf201c941acb (patch) | |
tree | 99823c267e34902aae622643b2e2fb412d5f846c /source3/lib/util.c | |
parent | 0e877bd53bcffcaeab738610ca64c685c99f8263 (diff) | |
download | samba-8afc9c80ac11649f06e5517d819dbf201c941acb.tar.gz samba-8afc9c80ac11649f06e5517d819dbf201c941acb.tar.bz2 samba-8afc9c80ac11649f06e5517d819dbf201c941acb.zip |
Changed ASSERT macros to SMB_ASSERT macros as some systems already
have an ASSERT macro defined.
Jeremy.
(This used to be commit dbe6ad014a8b5dcbf17d7cd9865650c2e040d666)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 28c7182250..4604836f77 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -379,7 +379,7 @@ char *StrCpy(char *dest,char *src) char *d = dest; /* I don't want to get lazy with these ... */ - ASSERT(dest && src); + SMB_ASSERT(dest && src); if (!dest) return(NULL); if (!src) { |