misc:
* Cursor disappears in some cases with abook_readline() on Solaris. If
you have problems it is recommended to use ncurses library
+* fseek in ldif import filter should be eliminated
+0.5.1
+ - minor filter fixes
+ - added bbdb2xx translator source to contrib
+
0.5.0
- tried to work around some problems with readline
- some documentation update
}
if(*line != ' ') {
- fseek(in, pos, SEEK_SET);
+ fseek(in, pos, SEEK_SET); /* fixme ! */
free(line);
break;
}
&& pine_conv_table[i] >= 0) {
strncpy(tmp, start, len);
tmp[len] = 0;
- item[pine_conv_table[i]] = strdup(tmp);
+ if(*tmp)
+ item[pine_conv_table[i]] = strdup(tmp);
}
start = end + 1;
}
fprintf(out,
"-----------------------------------------\n\n");
fprintf(out, "%s", database[e.item][NAME]);
- if (database[e.item][NICK])
+ if (database[e.item][NICK] && *database[e.item][NICK])
fprintf(out, "\n(%s)", database[e.item][NICK]);
fprintf(out, "\n");