From 01d8a3e11a8f23c7e6193d48f09afa752e2c74a6 Mon Sep 17 00:00:00 2001 From: ianmacd <> Date: Tue, 7 Oct 2003 04:45:03 +0000 Subject: [PATCH] - minor IPSec fixes --- bash_completion | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/bash_completion b/bash_completion index 6add940e..6af886d1 100644 --- a/bash_completion +++ b/bash_completion @@ -1,6 +1,6 @@ # bash_completion - some programmable completion functions for bash 2.05b # -# $Id: bash_completion,v 1.630 2003/09/29 18:08:05 ianmacd Exp $ +# $Id: bash_completion,v 1.631 2003/10/07 06:45:03 ianmacd Exp $ # # Copyright (C) Ian Macdonald # @@ -931,7 +931,7 @@ _ipsec() COMPREPLY=( $( compgen -W 'auto barf eroute klipsdebug look \ manual pluto ranbits rsasigkey \ setup showdefaults showhostkey spi \ - spigrp tncfg whack' $cur ) ) + spigrp tncfg whack' -- $cur ) ) return 0 fi @@ -940,17 +940,18 @@ _ipsec() COMPREPLY=( $( compgen -W '--asynchronous --up --add --delete \ --replace --down --route --unroute \ --ready --status --rereadsecrets' \ - $cur ) ) + -- $cur ) ) ;; manual) COMPREPLY=( $( compgen -W '--up --down --route --unroute \ - --union' $cur ) ) + --union' -- $cur ) ) ;; ranbits) - COMPREPLY=( $( compgen -W '--quick --continuous --bytes' $cur ) ) + COMPREPLY=( $( compgen -W '--quick --continuous --bytes' \ + -- $cur ) ) ;; setup) - COMPREPLY=( $( compgen -W '--start --stop --restart' $cur ) ) + COMPREPLY=( $( compgen -W '--start --stop --restart' -- $cur ) ) ;; *)