File: debian-changes

package info (click to toggle)
cronutils 1.9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 240 kB
  • sloc: ansic: 661; sh: 81; makefile: 36
file content (27 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
This is an autogenerated patch header for a single-debian-patch file. The
delta against upstream is either kept as a single patch, or maintained
in some VCS, and exported as a single patch instead of more manageable
atomic patches.

--- cronutils-1.9.orig/runlock.1
+++ cronutils-1.9/runlock.1
@@ -16,7 +16,7 @@ runlock \- prevent concurrent execution
 \fBrunlock\fR tries to hold an exclusive lock while it executes a
 command. Subsequent execution of \fBrunlock\fR with the same lock,
 while that lock is held, will cause the new instance of \fBrunlock\fR
-to terminate with a faliure exit code. Otherwise, the exit code of the
+to terminate with a failure exit code. Otherwise, the exit code of the
 subprocess is returned.
 
 .SH USAGE
--- cronutils-1.9.orig/subprocess.c
+++ cronutils-1.9/subprocess.c
@@ -129,7 +129,7 @@ int run_subprocess(char * command, char
     alarm(0);
     if (pid > 0) {
       if (pid != childpid) {
-        syslog(LOG_ERR, "childpid %d not retured by waitpid! instead %d",
+        syslog(LOG_ERR, "childpid %d not returned by waitpid! instead %d",
                childpid, pid);
         kill_process_group();
         exit(EX_OSERR);