Index: ccvs/lib/ChangeLog =================================================================== RCS file: /home2/cvsroot/ccvs/lib/ChangeLog,v retrieving revision 1.159 diff -r1.159 ChangeLog 0a1,4 > 2002-08-06 John Tytgat > > * regex.c: Removed unused `compile_range' declaration. > Index: ccvs/lib/regex.c =================================================================== RCS file: /home2/cvsroot/ccvs/lib/regex.c,v retrieving revision 1.11 diff -r1.11 regex.c 1537d1536 < static reg_errcode_t compile_range (); 5475c5474 < --- > Index: ccvs/src/ChangeLog =================================================================== RCS file: /home2/cvsroot/ccvs/src/ChangeLog,v retrieving revision 1.2284 diff -r1.2284 ChangeLog 0a1,6 > 2002-08-06 John Tytgat > > * import.c (import): Surrounded `server_active' with > #ifdef SERVER_SUPPORT/#endif. > * commit.c (commit_fileproc, commit_direntproc): Likewise. > Index: ccvs/src/commit.c =================================================================== RCS file: /home2/cvsroot/ccvs/src/commit.c,v retrieving revision 1.181 diff -r1.181 commit.c 1236c1236,1240 < if (!server_active && use_editor) --- > if ( > #ifdef SERVER_SUPPORT > !server_active && > #endif > use_editor) 1559c1563,1567 < if (!server_active && use_editor) --- > if ( > #ifdef SERVER_SUPPORT > !server_active && > #endif > use_editor) Index: ccvs/src/import.c =================================================================== RCS file: /home2/cvsroot/ccvs/src/import.c,v retrieving revision 1.131 diff -r1.131 import.c 219c219,223 < if (!server_active && use_editor) --- > if ( > #ifdef SERVER_SUPPORT > !server_active && > #endif > use_editor)