From: fredrik Date: Sat, 3 Jun 2006 20:06:21 +0000 (+0000) Subject: Proper octal. X-Git-Tag: 0.1~16 X-Git-Url: http://git.dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=6c21fc1d9e0619908e0b02006309ef59a8498cb3 Proper octal. git-svn-id: svn+ssh://svn.dolda2000.com/srv/svn/repos/src/doldaconnect@640 959494ce-11ee-0310-bf91-de5d638817bd --- diff --git a/daemon/client.c b/daemon/client.c index 9f3eac0..f173121 100644 --- a/daemon/client.c +++ b/daemon/client.c @@ -932,7 +932,7 @@ int doscan(int quantum) } type = FILE_REG; } else { - flog(LOG_WARNING, "unhandled file type: %o", sb.st_mode); + flog(LOG_WARNING, "unhandled file type: 0%o", sb.st_mode); free(wcs); continue; }