~ubuntu-branches/ubuntu/lucid/lpr/lucid

« back to all changes in this revision

Viewing changes to common_source/rmjob.c

  • Committer: Bazaar Package Importer
  • Author(s): Adam Majer
  • Date: 2008-05-19 21:11:19 UTC
  • Revision ID: james.westby@ubuntu.com-20080519211119-mkch0dpnzwnfr7vz
Tags: 1:2008.05.17
* Change package priority from standard to optional since it was
  already done in the override file
* Add upstream revision file
* Upgrade standards to 3.7.3
* Overwrite logcheck-database provided logcheck file with our own
  version (closes: #418393)
* Added upstream patches
  + lpd/printjob.c [rev. 1.41] - rfc 3834 support: "Auto-Submitted:
  auto-generated" on lots of things; from Tamas TEVESZ
  + Synched to upstream lpr as of 2008-05-17
* Merged logcheck-database rule with the ones provided by lpr.
* Remove old changelog entries for versions before OpenBSD's version
  was used as an upstream.
* Added Vcs- info to control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*      $OpenBSD: rmjob.c,v 1.16 2003/06/02 23:36:53 millert Exp $      */
 
1
/*      $OpenBSD: rmjob.c,v 1.17 2007/04/07 21:12:12 stevesk Exp $      */
2
2
/*      $NetBSD: rmjob.c,v 1.16 2000/04/16 14:43:58 mrg Exp $   */
3
3
 
4
4
/*
34
34
#if 0
35
35
static const char sccsid[] = "@(#)rmjob.c       8.2 (Berkeley) 4/28/95";
36
36
#else
37
 
static const char rcsid[] = "$OpenBSD: rmjob.c,v 1.16 2003/06/02 23:36:53 millert Exp $";
 
37
static const char rcsid[] = "$OpenBSD: rmjob.c,v 1.17 2007/04/07 21:12:12 stevesk Exp $";
38
38
#endif
39
39
#endif /* not lint */
40
40
 
152
152
         * Restart the printer daemon if it was killed
153
153
         */
154
154
        if (assasinated && !startdaemon(printer))
155
 
                fatal("cannot restart printer daemon\n");
 
155
                fatal("cannot restart printer daemon");
156
156
        exit(0);
157
157
}
158
158