[PATCH] smbd: Fix a false DEBUG fn name

Volker Lendecke Volker.Lendecke at SerNet.DE
Sat Dec 14 01:16:44 MST 2013


Hi!

Just came across this.

Please review & push.

Thanks,

Volker

-- 
SerNet GmbH, Bahnhofsallee 1b, 37081 Göttingen
phone: +49-551-370000-0, fax: +49-551-370000-9
AG Göttingen, HRB 2816, GF: Dr. Johannes Loxen
http://www.sernet.de, mailto:kontakt at sernet.de
-------------- next part --------------
>From 6c002b69740e5e1b9a3aa007781491db84331ee1 Mon Sep 17 00:00:00 2001
From: Volker Lendecke <vl at samba.org>
Date: Sun, 8 Dec 2013 16:41:04 +0000
Subject: [PATCH] smbd: Fix a false DEBUG fn name

---
 source3/smbd/trans2.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index e02d646..2667848 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -258,8 +258,8 @@ NTSTATUS get_ea_names_from_file(TALLOC_CTX *mem_ctx, connection_struct *conn,
 		return map_nt_error_from_unix(errno);
 	}
 
-	DEBUG(10, ("get_ea_list_from_file: ea_namelist size = %u\n",
-		   (unsigned int)sizeret));
+	DEBUG(10, ("%s: ea_namelist size = %u\n",
+		   __func__, (unsigned int)sizeret));
 
 	if (sizeret == 0) {
 		TALLOC_FREE(names);
-- 
1.7.9.5



More information about the samba-technical mailing list