Author: marek Date: 2010-03-10 22:18:38 +0100 (Wed, 10 Mar 2010) New Revision: 1587
Modified: trunk/batctl/bat-hosts.c trunk/batctl/bisect.c Log: batctl: fix typos in error messages
Modified: trunk/batctl/bat-hosts.c =================================================================== --- trunk/batctl/bat-hosts.c 2010-03-10 15:31:06 UTC (rev 1586) +++ trunk/batctl/bat-hosts.c 2010-03-10 21:18:38 UTC (rev 1587) @@ -158,7 +158,7 @@ */ normalized = malloc(locations * PATH_MAX); if (!normalized) { - printf("Warning - couldn't not get memory for bat-hosts file parsing\n"); + printf("Warning - could not get memory for bat-hosts file parsing\n"); return; }
@@ -166,7 +166,7 @@ host_hash = hash_new(64, compare_mac, choose_mac);
if (!host_hash) { - printf("Warning - couldn't not create bat hosts hash table\n"); + printf("Warning - could not create bat hosts hash table\n"); return; }
Modified: trunk/batctl/bisect.c =================================================================== --- trunk/batctl/bisect.c 2010-03-10 15:31:06 UTC (rev 1586) +++ trunk/batctl/bisect.c 2010-03-10 21:18:38 UTC (rev 1587) @@ -1513,7 +1513,7 @@ node_hash = hash_new(64, compare_name, choose_name);
if (!node_hash) { - printf("Error - couldn't not create node hash table\n"); + printf("Error - could not create node hash table\n"); goto err; }