From 71c22c2bb151244b2d3db7aa5a1e4a7fec7d2d83 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Wed, 3 Jan 2018 01:48:09 +0100 Subject: [PATCH] afs: Fix typo in error message. It was the ->open() method that failed when this message is logged. --- afs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afs.c b/afs.c index c2d5e7af..961634b2 100644 --- a/afs.c +++ b/afs.c @@ -685,7 +685,7 @@ static int open_afs_tables(void) ret = afs_tables[i].open(database_dir); if (ret >= 0) continue; - PARA_ERROR_LOG("%s init: %s\n", afs_tables[i].name, + PARA_ERROR_LOG("%s open: %s\n", afs_tables[i].name, para_strerror(-ret)); break; } -- 2.39.5