summaryrefslogtreecommitdiffstats
path: root/source/utils/net_cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/utils/net_cache.c')
-rw-r--r--source/utils/net_cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/utils/net_cache.c b/source/utils/net_cache.c
index a9559164587..93c4f1aa1df 100644
--- a/source/utils/net_cache.c
+++ b/source/utils/net_cache.c
@@ -64,7 +64,7 @@ static void delete_cache_entry(const char* keystr, const char* datastr,
const time_t timeout, void* dptr)
{
if (!gencache_del(keystr))
- d_printf("Couldn't delete entry! key = %s\n", keystr);
+ d_printf("Couldn't delete entry! key = %s", keystr);
}
@@ -214,7 +214,7 @@ static int net_cache_del(int argc, const char **argv)
const char *keystr = argv[0];
if (argc < 1) {
- d_printf("\nUsage: net cache del <key string>\n");
+ d_printf("\nUsage: net cache add <key string>\n");
return -1;
}