~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle.c

  • Committer: Lee Bieber
  • Date: 2010-11-08 16:09:17 UTC
  • mfrom: (1912.2.1 trunk-bug-672327)
  • Revision ID: kalebral@gmail.com-20101108160917-izpr0limbm39j7l4
Merge Andrew - fix bug 672327: Problem with signal handler inside of drizzle client

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
    printf("Error at WSAStartup()\n");
69
69
#endif
70
70
  struct sigaction act;
 
71
  memset(&act, 0, sizeof(act));
71
72
 
72
73
  act.sa_handler = SIG_IGN;
73
74
  sigaction(SIGPIPE, &act, NULL);