Browse Source

db.login: use G_config_path()

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@59319 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 11 years ago
parent
commit
8520abf7aa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      db/db.login/main.c

+ 1 - 1
db/db.login/main.c

@@ -74,7 +74,7 @@ int main(int argc, char *argv[])
     }
     
     if (password->answer)
-        G_important_message(_("The password was stored in file (%s/dblogin)"), CONFIG_DIR);
+        G_important_message(_("The password was stored in file (%s/dblogin)"), G_config_path());
     
     exit(EXIT_SUCCESS);
 }