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

Diff for /src/usr.bin/rwall/rwall.c between version 1.12 and 1.13

version 1.12, 2009/10/27 23:59:43 version 1.13, 2015/01/16 06:40:11
Line 39 
Line 39 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <time.h>  #include <time.h>
 #include <sys/param.h>  
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <pwd.h>  #include <pwd.h>
 #include <unistd.h>  #include <unistd.h>
   #include <limits.h>
 #include <paths.h>  #include <paths.h>
 #include <err.h>  #include <err.h>
   
Line 109 
Line 109 
         time_t now;          time_t now;
         FILE *fp;          FILE *fp;
         int fd;          int fd;
         char *whom, hostname[MAXHOSTNAMELEN], lbuf[100], tmpname[MAXPATHLEN];          char *whom, hostname[HOST_NAME_MAX+1], lbuf[100], tmpname[PATH_MAX];
   
         snprintf(tmpname, sizeof(tmpname), "%s/wall.XXXXXXXXXX", _PATH_TMP);          snprintf(tmpname, sizeof(tmpname), "%s/wall.XXXXXXXXXX", _PATH_TMP);
         if ((fd = mkstemp(tmpname)) == -1 || !(fp = fdopen(fd, "r+")))          if ((fd = mkstemp(tmpname)) == -1 || !(fp = fdopen(fd, "r+")))

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13