~brianaker/libdrizzle/install-html-fix

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle.cc

  • Committer: Andrew Hutchings
  • Date: 2012-12-21 08:10:08 UTC
  • mfrom: (43.2.14 5.0)
  • Revision ID: andrew@linuxjedi.co.uk-20121221081008-nwvhyxhn1s9omsn0
Merge 5.0 changes into 5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
  WSADATA wsaData;
104
104
  if ( WSAStartup( MAKEWORD(2,2), &wsaData ) != 0 )
105
105
    printf("Error at WSAStartup()\n");
106
 
#else
107
 
  struct sigaction act;
108
 
  memset(&act, 0, sizeof(act));
109
 
 
110
 
  act.sa_handler = SIG_IGN;
111
 
  sigaction(SIGPIPE, &act, NULL);
112
106
#endif
113
107
 
114
108
  drizzle= (drizzle_st*)malloc(sizeof(drizzle_st));