]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
afs: Fix typo in error message.
authorAndre Noll <maan@tuebingen.mpg.de>
Wed, 3 Jan 2018 00:48:09 +0000 (01:48 +0100)
committerAndre Noll <maan@tuebingen.mpg.de>
Tue, 13 Mar 2018 02:28:10 +0000 (03:28 +0100)
It was the ->open() method that failed when this message is logged.

afs.c

diff --git a/afs.c b/afs.c
index c2d5e7af0f2ad638aa72cd1cac41fcc471a57a01..961634b2afc3a1e5c51783502924efe7be0afebc 100644 (file)
--- 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;
        }