summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-12-01 17:35:19 +0100
committerKarolin Seeger <kseeger@samba.org>2008-12-11 10:27:10 +0100
commitbc846e275f866ae1cb71293eb4303c2c6c62d4e9 (patch)
treeddde4123e0a39ba79282447d9b93b38a0d48977f
parente3f65d433eb9429a76930875fb8651a5b50fe78d (diff)
downloadsamba-bc846e275f866ae1cb71293eb4303c2c6c62d4e9.tar.gz
samba-bc846e275f866ae1cb71293eb4303c2c6c62d4e9.tar.xz
samba-bc846e275f866ae1cb71293eb4303c2c6c62d4e9.zip
Fix a debug message, append the correct \n
(cherry picked from commit 263c1ca96bd68dced4577a2504073e1140fa26a1)
-rw-r--r--source/smbd/trans2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/trans2.c b/source/smbd/trans2.c
index 804fa210092..8f4869321a1 100644
--- a/source/smbd/trans2.c
+++ b/source/smbd/trans2.c
@@ -1129,7 +1129,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;
}