[Netnice-developer] select_all() problem update
Status: Alpha
Brought to you by:
taost6
From: Michael L. G. <mi...@cs...> - 2003-11-23 05:48:45
|
Hey all, I tracked down the bug. In the file vif.cc in the methods: vif::select_all() vif::select_by_file(String filename) vif::nselect_by_file(String filename) They each have the line: if ( !( isRegularDir(dir) This should be changed to: if ( ( isRegularDir(dir) I'm not sure why it was the other way. Prehaps this is a bug that propagated? If I remove the "not" the methods seem to work. Should I commit this change, or do one of you who have it "checked out" want to commit this change with the next release? Mike |