* aclocal.m4: Fix typo in last change. Do not get rid of
authorEzra Peisach <epeisach@mit.edu>
Tue, 31 Jul 2001 01:34:25 +0000 (01:34 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 31 Jul 2001 01:34:25 +0000 (01:34 +0000)
        spaces in definitions.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13657 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/aclocal.m4

index 765e55048b536bd0d24a9609e7c316f7f306e3b6..1745bed1e475e73f98bdf434fe034db56c2a0b3d 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-30  Ezra Peisach  <epeisach@mit.edu>
+
+       * aclocal.m4: Fix typo in last change. Do not get rid of 
+       spaces in definitions.
+       
 2001-07-30  Ezra Peisach  <epeisach@mit.edu>
 
        * aclocal.m4: Add functions KRB5_GETSOCKNAME_ARGS and
index 2d56c719a4292ee1cc11357f532ae36acc34b1a6..7ebf1ac47a0bc923e95a39c8a2106e05f470f452 100644 (file)
@@ -1303,8 +1303,8 @@ extern int getpeername(int, $1, $2);
 if eval "test \"`echo '$krb5_cv_getpeername_proto'$krb5_lib_var`\" = yes"; then
        AC_MSG_RESULT(yes)
        peer_set=yes
-       res1=`echo "$1" | tr -d ' *'`
-       res2=`echo "$2" | tr -d ' *'`
+       res1=`echo "$1" | tr -d '*'`
+       res2=`echo "$2" | tr -d '*'`
        AC_DEFINE_UNQUOTED([GETPEERNAME_ARG2_TYPE],$res1)
        AC_DEFINE_UNQUOTED([GETPEERNAME_ARG3_TYPE],$res2)
 else
@@ -1344,8 +1344,8 @@ extern int getsockname(int, $1, $2);
 if eval "test \"`echo '$krb5_cv_getsockname_proto_'$krb5_lib_var`\" = yes"; then
        AC_MSG_RESULT(yes)
        sock_set=yes
-       res1=`echo "$1" | tr -d ' *'`
-       res2=`echo "$2" | tr -d ' *'`
+       res1=`echo "$1" | tr -d '*'`
+       res2=`echo "$2" | tr -d '*'`
        AC_DEFINE_UNQUOTED([GETSOCKNAME_ARG2_TYPE],$res1)
        AC_DEFINE_UNQUOTED([GETSOCKNAME_ARG3_TYPE],$res2)
 else