[BACK]Return to server.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/server.c between version 1.22 and 1.23

version 1.22, 2005/08/10 14:49:20 version 1.23, 2005/08/14 19:49:18
Line 81 
Line 81 
         }          }
   
         /* make sure standard in and standard out are line-buffered */          /* make sure standard in and standard out are line-buffered */
         (void)setvbuf(stdin, NULL, _IOLBF, 0);          (void)setvbuf(stdin, NULL, _IOLBF, (size_t)0);
         (void)setvbuf(stdout, NULL, _IOLBF, 0);          (void)setvbuf(stdout, NULL, _IOLBF, (size_t)0);
   
         /* create the temporary directory */          /* create the temporary directory */
         l = snprintf(cvs_server_tmpdir, sizeof(cvs_server_tmpdir),          l = snprintf(cvs_server_tmpdir, sizeof(cvs_server_tmpdir),

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23