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

Diff for /src/usr.bin/rdistd/server.c between version 1.27 and 1.28

version 1.27, 2014/07/05 06:40:54 version 1.28, 2014/07/05 06:45:00
Line 28 
Line 28 
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
   #include <dirent.h>
   
 #include "defs.h"  #include "defs.h"
   
 /*  /*
Line 297 
Line 300 
 removefile(struct stat *statb, int silent)  removefile(struct stat *statb, int silent)
 {  {
         DIR *d;          DIR *d;
         static DIRENTRY *dp;          static struct dirent *dp;
         char *cp;          char *cp;
         struct stat stb;          struct stat stb;
         char *optarget;          char *optarget;
Line 407 
Line 410 
 doclean(char *cp)  doclean(char *cp)
 {  {
         DIR *d;          DIR *d;
         DIRENTRY *dp;          struct dirent *dp;
         struct stat stb;          struct stat stb;
         char *optarget, *ep;          char *optarget, *ep;
         int len;          int len;

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28