From: Andre Noll Date: Wed, 3 Jan 2018 00:48:09 +0000 (+0100) Subject: afs: Fix typo in error message. X-Git-Tag: v0.6.2~4^2~30 X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=71c22c2bb151244b2d3db7aa5a1e4a7fec7d2d83;p=paraslash.git afs: Fix typo in error message. It was the ->open() method that failed when this message is logged. --- 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; }