Software /
code /
prosody
Diff
core/storagemanager.lua @ 7327:d62f0471470f
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 02 Apr 2016 17:13:12 +0200 |
parent | 7245:210d8329dc70 |
parent | 7325:7baf1b14defb |
child | 7647:e9d7a409e236 |
line wrap: on
line diff
--- a/core/storagemanager.lua Tue Mar 29 15:38:14 2016 +0200 +++ b/core/storagemanager.lua Sat Apr 02 17:13:12 2016 +0200 @@ -196,7 +196,7 @@ function datamanager.users(host, datastore, typ) local driver = open(host, datastore, typ); if not driver.users then - return function() log("warn", "storage driver %s does not support listing users", driver.name) end + return function() log("warn", "Storage driver %s does not support listing users", driver.name) end end return driver:users(); end