diff options
author | paul <paul> | 2006-06-27 10:42:18 +0000 |
---|---|---|
committer | paul <paul> | 2006-06-27 10:42:18 +0000 |
commit | 4a589f8f267eccf04a7cb3c2258545b6d847472b (patch) | |
tree | 46ddddff4d18c7433e0731bbed417b283380519d /lib | |
parent | f6ae55c04b8002a24f912ce0e2d52d2595cf3c76 (diff) | |
download | quagga-4a589f8f267eccf04a7cb3c2258545b6d847472b.tar.bz2 quagga-4a589f8f267eccf04a7cb3c2258545b6d847472b.tar.xz |
[lib] Remove bare routes in route_types: fix mistake in commmit
2006-06-27 Paul Jakma <paul.jakma@sun.com>
* route_types.awk: Fix previous commit. Forgot to remove the
printf of the bare/numeric route-type help string (empty string)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/route_types.awk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/route_types.awk b/lib/route_types.awk index 72f3664f..eb3d382a 100644 --- a/lib/route_types.awk +++ b/lib/route_types.awk @@ -174,9 +174,7 @@ END { printf(redist_str_fmt, rstr); printf(redist_help_def_fmt, toupper(daemon)); printf("%s", hstr); - printf(redist_help_str_fmt, redist_bare_help); - print("\n"); - + printf("\n\n"); } #printf("#define QUAGGA_REDIST_STR_ALL %s\n",all); |