summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-10-29 21:35:29 +0100
committerDaniel Friesel <derf@finalrewind.org>2015-10-29 21:35:29 +0100
commitc9070a5ba14feff3daf4db0fc076873cbd878f44 (patch)
tree52dd5da5fd8b7b61e85e5e684076669064357e57
parentbd02d95a7218a624d33c72a96b5a361805e70540 (diff)
-of: show delimiter between route_pre and route_post
-rwxr-xr-xbin/db-iris5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/db-iris b/bin/db-iris
index 59ba4ba..2aa94b7 100755
--- a/bin/db-iris
+++ b/bin/db-iris
@@ -306,7 +306,10 @@ sub display_result {
}
if ( $edata{fullroute} ) {
- print "\n" . join( "\n", $d->route ) . "\n\n";
+ print "\n"
+ . join( "\n", $d->route_pre )
+ . "\n - - - -\n"
+ . join( "\n", $d->route_post ) . "\n\n";
}
}