diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-01-18 23:43:43 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-01-18 23:43:43 -0500 |
commit | c464b0782eb75ed293ffbe56ad8ed41122cf4c7b (patch) | |
tree | 20b92009bd28671c90431033f39b0bb502b47c9b /src | |
parent | 71d180394c3357d2a99e9f1fc6a2fa7514552da9 (diff) |
removing superfluous eval
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere-host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index 5007cac..a90ab15 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -264,7 +264,7 @@ multi_key() { if (( i++ > 0 )) ; then echo "##############################" fi - eval "$cmd" "$key" + "$cmd" "$key" done } |