prefix all struct HDB elements with hdb_

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12880 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-09-19 00:25:35 +00:00
parent ef91ed3046
commit 0540f13b86
29 changed files with 372 additions and 385 deletions

View File

@@ -63,7 +63,7 @@ dump(int argc, char **argv)
else
f = fopen(argv[0], "w");
ret = db->open(context, db, O_RDONLY, 0600);
ret = db->hdb_open(context, db, O_RDONLY, 0600);
if(ret){
krb5_warn(context, ret, "hdb_open");
if(f != stdout)
@@ -75,6 +75,6 @@ dump(int argc, char **argv)
if(f != stdout)
fclose(f);
db->close(context, db);
db->hdb_close(context, db);
return 0;
}