Fix database deletion, we don't have .dir & .pag, use .db instead

This commit is contained in:
ache 1995-01-25 19:57:27 +00:00
parent c3eb1d5226
commit 01f2a37875
2 changed files with 28 additions and 4 deletions

View File

@ -4,12 +4,12 @@
* <Copyright.MIT>.
*
* from: kdb_destroy.c,v 4.0 89/01/24 21:49:02 jtkohl Exp $
* $Id: kdb_destroy.c,v 1.2 1994/07/19 19:23:49 g89r4222 Exp $
* $Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $
*/
#ifndef lint
static char rcsid[] =
"$Id: kdb_destroy.c,v 1.2 1994/07/19 19:23:49 g89r4222 Exp $";
"$Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $";
#endif lint
#include <strings.h>
@ -22,12 +22,20 @@ main()
char answer[10]; /* user input */
char dbm[256]; /* database path and name */
char dbm1[256]; /* database path and name */
#ifndef __FreeBSD__
char *file1, *file2; /* database file names */
#else
char *file; /* database file names */
#endif
strcpy(dbm, DBM_FILE);
#ifndef __FreeBSD__
strcpy(dbm1, DBM_FILE);
file1 = strcat(dbm, ".dir");
file2 = strcat(dbm1, ".pag");
#else
file = strcat(dbm, ".db");
#endif
printf("You are about to destroy the Kerberos database ");
printf("on this machine.\n");
@ -35,7 +43,11 @@ main()
fgets(answer, sizeof(answer), stdin);
if (answer[0] == 'y' || answer[0] == 'Y') {
#ifndef __FreeBSD__
if (unlink(file1) == 0 && unlink(file2) == 0)
#else
if (unlink(file) == 0)
#endif
fprintf(stderr, "Database deleted at %s\n", DBM_FILE);
else
fprintf(stderr, "Database cannot be deleted at %s\n",

View File

@ -4,12 +4,12 @@
* <Copyright.MIT>.
*
* from: kdb_destroy.c,v 4.0 89/01/24 21:49:02 jtkohl Exp $
* $Id: kdb_destroy.c,v 1.2 1994/07/19 19:23:49 g89r4222 Exp $
* $Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $
*/
#ifndef lint
static char rcsid[] =
"$Id: kdb_destroy.c,v 1.2 1994/07/19 19:23:49 g89r4222 Exp $";
"$Id: kdb_destroy.c,v 1.1.1.1 1994/09/30 14:49:56 csgr Exp $";
#endif lint
#include <strings.h>
@ -22,12 +22,20 @@ main()
char answer[10]; /* user input */
char dbm[256]; /* database path and name */
char dbm1[256]; /* database path and name */
#ifndef __FreeBSD__
char *file1, *file2; /* database file names */
#else
char *file; /* database file names */
#endif
strcpy(dbm, DBM_FILE);
#ifndef __FreeBSD__
strcpy(dbm1, DBM_FILE);
file1 = strcat(dbm, ".dir");
file2 = strcat(dbm1, ".pag");
#else
file = strcat(dbm, ".db");
#endif
printf("You are about to destroy the Kerberos database ");
printf("on this machine.\n");
@ -35,7 +43,11 @@ main()
fgets(answer, sizeof(answer), stdin);
if (answer[0] == 'y' || answer[0] == 'Y') {
#ifndef __FreeBSD__
if (unlink(file1) == 0 && unlink(file2) == 0)
#else
if (unlink(file) == 0)
#endif
fprintf(stderr, "Database deleted at %s\n", DBM_FILE);
else
fprintf(stderr, "Database cannot be deleted at %s\n",