diff options
-rw-r--r-- | source3/lib/gencache.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/lib/gencache.c b/source3/lib/gencache.c index 237faf9d3d..09f4b8d094 100644 --- a/source3/lib/gencache.c +++ b/source3/lib/gencache.c @@ -286,8 +286,9 @@ bool gencache_set_data_blob(const char *keystr, const DATA_BLOB *blob, return false; } - DEBUG(10, ("Adding cache entry with key = %s and timeout =" - " %s (%d seconds %s)\n", keystr, ctime(&timeout), + DEBUG(10, ("Adding cache entry with key=[%s] and timeout=" + "[%s] (%d seconds %s)\n", keystr, + ctime(&timeout), (int)(timeout - time(NULL)), timeout > time(NULL) ? "ahead" : "in the past")); |