summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@fedoraproject.org>2007-01-30 21:01:21 +0000
committerNalin Dahyabhai <nalin@fedoraproject.org>2007-01-30 21:01:21 +0000
commitcb6888727315d17b6507ec317894c65a1c1cb6c8 (patch)
treeec1fa3e903f3f33b6b0d78a313917d36f33235d2
parent6e6adec72653d4c03a4f368d81b6f37eca608e6a (diff)
downloadkrb5-cb6888727315d17b6507ec317894c65a1c1cb6c8.tar.gz
krb5-cb6888727315d17b6507ec317894c65a1c1cb6c8.tar.xz
krb5-cb6888727315d17b6507ec317894c65a1c1cb6c8.zip
- clean up quoting of command-line arguments passed to the krsh/krlogin
wrapper scripts
-rw-r--r--krb5.spec6
-rw-r--r--krlogin2
-rw-r--r--krsh2
3 files changed, 7 insertions, 3 deletions
diff --git a/krb5.spec b/krb5.spec
index 0f4b97e..4989ef1 100644
--- a/krb5.spec
+++ b/krb5.spec
@@ -12,7 +12,7 @@
Summary: The Kerberos network authentication system.
Name: krb5
Version: 1.6
-Release: 0
+Release: 1
# Maybe we should explode from the now-available-to-everybody tarball instead?
# http://web.mit.edu/kerberos/dist/krb5/1.5/krb5-1.5-signed.tar
Source0: krb5-%{version}.tar.gz
@@ -184,6 +184,10 @@ installed on systems which are meant provide these services.
%endif
%changelog
+* Tue Jan 30 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-1
+- clean up quoting of command-line arguments passed to the krsh/krlogin
+ wrapper scripts
+
* Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com>
- initial update to 1.6, pre-package-reorg
- move workstation daemons to a new subpackage (#81836, #216356, #217301), and
diff --git a/krlogin b/krlogin
index d670f44..ed10d0d 100644
--- a/krlogin
+++ b/krlogin
@@ -1,2 +1,2 @@
#!/bin/sh
-/usr/kerberos/bin/rlogin -x $*
+/usr/kerberos/bin/rlogin -x "$@"
diff --git a/krsh b/krsh
index 3acbef5..ec52717 100644
--- a/krsh
+++ b/krsh
@@ -1,2 +1,2 @@
#!/bin/sh
-/usr/kerberos/bin/rsh -x $*
+/usr/kerberos/bin/rsh -x "$@"