From: Daniel G. <dg...@su...> - 2005-12-31 13:20:19
|
Hi, There was a typo in the code of msynctool which is already fixed in the latest svn revision. When the editor variable isn't set it should call vi but instead of vi it called "editcmd". You can fix it by removing the quotes in line 512 in tools/msynctool.c : - =C2=A0=C2=A0 if (system("editcmd")) {=C2=A0=C2=A0 +=C2=A0=C2=A0 if (system(editcmd)) { or checkout the latest svn revision of multisync-cli. Or set the enviroment variable editor, like Markus said. best regards, Daniel |