Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/infocmp terminfo uses CDB instead of DB



details:   https://anonhg.NetBSD.org/src/rev/acbe9585ff79
branches:  trunk
changeset: 790275:acbe9585ff79
user:      roy <roy%NetBSD.org@localhost>
date:      Tue Oct 01 09:01:49 2013 +0000

description:
terminfo uses CDB instead of DB

diffstat:

 usr.bin/infocmp/infocmp.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r a2dbc5ba6ca5 -r acbe9585ff79 usr.bin/infocmp/infocmp.c
--- a/usr.bin/infocmp/infocmp.c Tue Oct 01 07:48:35 2013 +0000
+++ b/usr.bin/infocmp/infocmp.c Tue Oct 01 09:01:49 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: infocmp.c,v 1.7 2010/02/22 23:05:39 roy Exp $ */
+/* $NetBSD: infocmp.c,v 1.8 2013/10/01 09:01:49 roy Exp $ */
 
 /*
  * Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: infocmp.c,v 1.7 2010/02/22 23:05:39 roy Exp $");
+__RCSID("$NetBSD: infocmp.c,v 1.8 2013/10/01 09:01:49 roy Exp $");
 
 #include <sys/ioctl.h>
 
@@ -723,7 +723,7 @@
                                printf("internal database\n");
                        else
                                printf("%s%s\n", _ti_database,
-                                   *_ti_database == '/' ? ".db" : "");
+                                   *_ti_database == '/' ? ".cdb" : "");
                }
                printf("%s", t->name);
                if (t->_alias != NULL && *t->_alias != '\0')



Home | Main Index | Thread Index | Old Index