diff options
author | Jeremy Allison <jra@samba.org> | 2009-08-21 21:53:37 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-08-21 21:53:37 -0700 |
commit | 1fb916babdbfe5eb780d1388b38dc5cc05463819 (patch) | |
tree | 641b463048af9195a39c2123f9e548d6bfe4fcfd | |
parent | 1af0aa92b3f3467715f6ffbfedf66df1acc0a83c (diff) | |
download | samba-1fb916babdbfe5eb780d1388b38dc5cc05463819.tar.gz samba-1fb916babdbfe5eb780d1388b38dc5cc05463819.tar.bz2 samba-1fb916babdbfe5eb780d1388b38dc5cc05463819.zip |
Log debug message when hires timestamps are available on the
share.
Jeremy.
-rw-r--r-- | source3/smbd/service.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 6254d752a1..36b783ee78 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -1025,6 +1025,10 @@ connection_struct *make_connection_snum(struct smbd_server_connection *sconn, * as on Linux ext3 doesn't have hires timestamps, but * ext4 does, so a compile time test won't work. JRA. */ + DEBUG(10,("make_connection_snum: hires timestamps " + "available on share %s, directory %s\n", + lp_servicename(snum), + conn->connectpath )); conn->hires_timestamps_avail = true; } |