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

Diff for /src/usr.bin/at/at.c between version 1.19 and 1.20

version 1.19, 2000/04/23 16:32:07 version 1.20, 2001/01/17 19:29:06
Line 115 
Line 115 
                 PRIV_END                  PRIV_END
         }          }
   
         exit(EXIT_FAILURE);          _exit(EXIT_FAILURE);
 }  }
   
 static void  static void
 alarmc(signo)  alarmc(signo)
         int signo;          int signo;
 {  {
           char buf[1024];
   
         /* Time out after some seconds. */          /* Time out after some seconds. */
         panic("File locking timed out");          strlcpy(buf, namep, sizeof(buf));
           strlcat(buf, ": File locking timed out\n", sizeof(buf));
           write(STDERR_FILENO, buf, strlen(buf));
           if (fcreated) {
                   PRIV_START
                   unlink(atfile);
                   PRIV_END
           }
           _exit(EXIT_FAILURE);
 }  }
   
 /* Local functions */  /* Local functions */

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20