diff options
author | Paul Jakma <paul.jakma@sun.com> | 2006-06-27 10:42:18 +0000 |
---|---|---|
committer | Paul Jakma <paul.jakma@sun.com> | 2006-06-27 10:42:18 +0000 |
commit | 5f41e90e49b8ced6b5adac3933736067d2b24584 (patch) | |
tree | 4fab3a3596e75f5ec3959c614f921de5773bdc4a | |
parent | 95509e64e3d0fc8b01045b497b7077225d9997f0 (diff) |
[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)
-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); |