* complete.c (fetch_hosts): Removed unused variable.

This commit is contained in:
Roland Illig 2005-08-15 22:30:36 +00:00
parent b973c398dc
commit a94e34c698
2 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,7 @@
* wtools.h: Replaced 0 with LISTBOX_APPEND_AT_END.
* achown.c: Likewise.
* view.c (view_toggle_ruler): Don't mix enums with ints.
* complete.c (fetch_hosts): Removed unused variable.
2005-08-15 Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>

View File

@ -271,13 +271,13 @@ static int hosts_alloclen = 0;
static void fetch_hosts (const char *filename)
{
FILE *file = fopen (filename, "r");
char *temp, buffer[256], *name;
char buffer[256], *name;
register int i, start;
if (!file)
return;
while ((temp = fgets (buffer, 255, file)) != NULL){
while (fgets (buffer, 255, file) != NULL){
/* Skip to first character. */
for (i = 0; buffer[i] && cr_whitespace (buffer[i]); i++);
/* Ignore comments... */