From: Volker Lendecke Date: Mon, 1 Dec 2008 16:35:19 +0000 (+0100) Subject: Fix a debug message, append the correct \n X-Git-Tag: samba-4.0.0alpha6~480^2~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f0661ace8c83be6686d7f81af77ccf243dbb992;p=thirdparty%2Fsamba.git Fix a debug message, append the correct \n --- diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 4dc2001042a..9719d5c3869 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -1135,7 +1135,7 @@ static uint32 unix_filetype(mode_t mode) return UNIX_TYPE_SOCKET; #endif - DEBUG(0,("unix_filetype: unknown filetype %u", (unsigned)mode)); + DEBUG(0,("unix_filetype: unknown filetype %u\n", (unsigned)mode)); return UNIX_TYPE_UNKNOWN; }