~ubuntu-branches/ubuntu/oneiric/dbus/oneiric-security

« back to all changes in this revision

Viewing changes to tools/dbus-launch.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2010-02-03 22:49:42 UTC
  • mto: (1.4.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20100203224942-5lxy2sbes22vxzru
Tags: upstream-1.2.20
ImportĀ upstreamĀ versionĀ 1.2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
405
405
#ifdef SIGHUP
406
406
    case SIGHUP:
407
407
#endif
 
408
    case SIGINT:
408
409
    case SIGTERM:
409
410
      got_sighup = TRUE;
410
411
      break;
429
430
  act.sa_flags   = 0;
430
431
  sigaction (SIGHUP,  &act, NULL);
431
432
  sigaction (SIGTERM,  &act, NULL);
 
433
  sigaction (SIGINT,  &act, NULL);
432
434
  
433
435
#ifdef DBUS_BUILD_X11
434
436
  x11_init();