diff --git a/bin/efa b/bin/efa
index df945d62ea21820679a96cf1230d313df0e816bf..d28f32c6ff332a7a392113ee64c2acfc9fdfe088 100755
--- a/bin/efa
+++ b/bin/efa
@@ -152,7 +152,12 @@ sub display_connection {
 	}
 
 	for my $notice ( $c->current_info ) {
-		printf( "# %s - %s\n", $notice->{subtitle}, $notice->{subject} );
+		if ( $notice->{subtitle} ne $notice->{subject} ) {
+			printf( "# %s - %s\n", $notice->{subtitle}, $notice->{subject} );
+		}
+		else {
+			printf( "# %s\n", $notice->{subtitle} );
+		}
 	}
 
 	if ( $opt->{maps} ) {