aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDean Roehrich <roehrich@sgi.com>2001-07-18 18:00:16 +0000
committerDean Roehrich <roehrich@sgi.com>2001-07-18 18:00:16 +0000
commitadb60aba7f463003a8e9490090246ca800588b7b (patch)
tree105e272e7235a7fec639e0247ddb02e741314ff5
parent1010adfd325097dfb86692373a1193cfacf7774f (diff)
downloaddmapi-dev-adb60aba7f463003a8e9490090246ca800588b7b.tar.gz
update version
-rw-r--r--VERSION11
-rw-r--r--doc/CHANGES2
-rw-r--r--libdm/dmapi_lib.c2
3 files changed, 4 insertions, 11 deletions
diff --git a/VERSION b/VERSION
index 1c84172..976b5d4 100644
--- a/VERSION
+++ b/VERSION
@@ -3,14 +3,5 @@
#
PKG_MAJOR=0
PKG_MINOR=1
-PKG_REVISION=1
+PKG_REVISION=2
PKG_BUILD=0
-
-
-
-# Libtool versioning <PKG_LT_CURRENT:PKG_LT_REVISION:PKG_LT_AGE>.
-# These numbers refer to the library's interface, and have nothing to do with
-# the version of the package. See chapter 6 of the Libtool manual.
-PKG_LT_CURRENT=0
-PKG_LT_REVISION=0
-PKG_LT_AGE=0
diff --git a/doc/CHANGES b/doc/CHANGES
index 2351eb4..491033f 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,3 +1,5 @@
+dmapi-0.1.2 (18 July 2001)
+ - change dmapi to use /proc instead of /dev/dmapi
dmapi-0.1.1 (30 January 2001)
- minor rpm and deb packaging work
diff --git a/libdm/dmapi_lib.c b/libdm/dmapi_lib.c
index 892f2b8..8b0c058 100644
--- a/libdm/dmapi_lib.c
+++ b/libdm/dmapi_lib.c
@@ -47,7 +47,7 @@ static int dmapi_fd = -1;
int
dmi_init_service( char *versionstr )
{
- dmapi_fd = open( "/dev/dmapi", O_RDWR );
+ dmapi_fd = open( "/proc/fs/xfs/dmapi", O_RDWR );
if( dmapi_fd == -1 )
return -1;
return 0;