Author: marek Date: 2010-03-10 23:34:46 +0100 (Wed, 10 Mar 2010) New Revision: 1592
Modified: branches/batctl-0.2.x/bat-hosts.c branches/batctl-0.2.x/bisect.c Log: batctl: fix typos in error messages
Modified: branches/batctl-0.2.x/bat-hosts.c =================================================================== --- branches/batctl-0.2.x/bat-hosts.c 2010-03-10 22:34:43 UTC (rev 1591) +++ branches/batctl-0.2.x/bat-hosts.c 2010-03-10 22:34:46 UTC (rev 1592) @@ -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: branches/batctl-0.2.x/bisect.c =================================================================== --- branches/batctl-0.2.x/bisect.c 2010-03-10 22:34:43 UTC (rev 1591) +++ branches/batctl-0.2.x/bisect.c 2010-03-10 22:34:46 UTC (rev 1592) @@ -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; }