summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-02-08 22:09:04 +0000
committerLuke Leighton <lkcl@samba.org>2000-02-08 22:09:04 +0000
commit1975f8d8764fbcfc9dcb5d8b81ee34d7a4e46ac4 (patch)
tree377f71ae28d3a493444f755caff62c40a6e236e4
parentf6bf71e90ce53e2b38d7814131b3e56a1e057969 (diff)
downloadsamba-1975f8d8764fbcfc9dcb5d8b81ee34d7a4e46ac4.tar.gz
oops, fixing --with-sam-pwdb= types
-rwxr-xr-xsource/configure4
-rw-r--r--source/configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/source/configure b/source/configure
index e9dcc0c38ba..d43b18ba8dd 100755
--- a/source/configure
+++ b/source/configure
@@ -8670,11 +8670,11 @@ echo "configure:8669: checking which sam password database to use" >&5
if test "${with_sam_pwdb+set}" = set; then
withval="$with_sam_pwdb"
case "$withval" in
- ""|smbpasswd)
+ ""|passdb)
SAM_PWDB_LIB='$(SAMRPASSLIB)'
sampwlibname="passdb"
;;
- samtdb)
+ tdb)
SAM_PWDB_LIB='$(SAMRTDBLIB)'
sampwlibname="tdb"
;;
diff --git a/source/configure.in b/source/configure.in
index 8b52b382a83..1cd58ad8dc3 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -677,11 +677,11 @@ AC_ARG_WITH(sam_pwdb,
[ --with-sam-pwdb={passdb,tdb,nt5ldap}
which password-database to use (passdb)],
[ case "$withval" in
- ""|smbpasswd)
+ ""|passdb)
SAM_PWDB_LIB='$(SAMRPASSLIB)'
sampwlibname="passdb"
;;
- samtdb)
+ tdb)
SAM_PWDB_LIB='$(SAMRTDBLIB)'
sampwlibname="tdb"
;;