summaryrefslogtreecommitdiff
path: root/mndp.c
diff options
context:
space:
mode:
Diffstat (limited to 'mndp.c')
-rw-r--r--mndp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mndp.c b/mndp.c
index bec7c64..b229d3b 100644
--- a/mndp.c
+++ b/mndp.c
@@ -88,7 +88,7 @@ int mndp(void) {
}
}
- printf("\n\E[1m%-17s Identity (platform version hardware) uptime\E[m\n", "MAC-Address");
+ printf("\n\E[1m%-17s %s\E[m\n", _("MAC-Address"), _("Identity (platform version hardware) uptime"));
while(1) {
struct mt_mndp_info *packet;
@@ -104,7 +104,7 @@ int mndp(void) {
if (packet != NULL) {
/* Print it */
- printf(" %-17s %s", ether_ntoa((struct ether_addr *)packet->address), packet->identity);
+ printf("%-17s %s", ether_ntoa((struct ether_addr *)packet->address), packet->identity);
if (packet->platform != NULL) {
printf(" (%s %s %s)", packet->platform, packet->version, packet->hardware);
}