~drizzle-developers/ubuntu/karmic/drizzle/ppa

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle.c

  • Committer: Monty Taylor
  • Date: 2010-11-10 22:59:29 UTC
  • mfrom: (1308.1.27 ubuntu)
  • Revision ID: mordred@inaugust.com-20101110225929-fd7pqkg4xtuidm10
* New upstream release.
* New upstream release.
* drizzledump.1 manpage shipping in tarball now.
* Removed quilt patches for things applied upstream.
* Added support for RabbitMQ plugin.
* Added support for libnotify error message plugin.
* Added build depend on libboost-iostreams-dev.
* Karmic PPA

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
  if ( WSAStartup( MAKEWORD(2,2), &wsaData ) != 0 )
68
68
    printf("Error at WSAStartup()\n");
69
69
#endif
 
70
  struct sigaction act;
 
71
  memset(&act, 0, sizeof(act));
 
72
 
 
73
  act.sa_handler = SIG_IGN;
 
74
  sigaction(SIGPIPE, &act, NULL);
 
75
 
70
76
  if (drizzle == NULL)
71
77
  {
72
78
    drizzle= malloc(sizeof(drizzle_st));