summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2015-10-21 11:07:57 -0700
committerJeremy Allison <jra@samba.org>2015-10-21 23:13:17 +0200
commitb041a589ae680de38f4e9c8c4979c3972a4e7b07 (patch)
tree0e5f4944f5c0e38c082928a0727f081c76d0de32 /lib
parent1d3df7e18def05c4552f4647b3644f7b7952fc66 (diff)
downloadsamba-b041a589ae680de38f4e9c8c4979c3972a4e7b07.tar.gz
Remove function name from callers of DBG_*
It is now added automatically. Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/util/charset/util_str.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/charset/util_str.c b/lib/util/charset/util_str.c
index c1b81f119e7..ef8a82af767 100644
--- a/lib/util/charset/util_str.c
+++ b/lib/util/charset/util_str.c
@@ -545,13 +545,13 @@ char *strstr_m(const char *src, const char *findstr)
frame = talloc_stackframe();
if (!push_ucs2_talloc(frame, &src_w, src, &converted_size)) {
- DBG_WARNING("strstr_m: src malloc fail\n");
+ DBG_WARNING("src malloc fail\n");
TALLOC_FREE(frame);
return NULL;
}
if (!push_ucs2_talloc(frame, &find_w, findstr, &converted_size)) {
- DBG_WARNING("strstr_m: find malloc fail\n");
+ DBG_WARNING("find malloc fail\n");
TALLOC_FREE(frame);
return NULL;
}