~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle.c

  • Committer: Andrew Hutchings
  • Date: 2010-11-08 14:02:45 UTC
  • mto: This revision was merged to the branch mainline in revision 1914.
  • Revision ID: andrew@linuxjedi.co.uk-20101108140245-8si1beybs9kwkc7p
Keep dtr client connection alive during lengthy drizzleslap tests (made longer when using valgrind)
Fix valgrind sig handler warnings in libdrizzle

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);