~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/vio.c

  • Committer: Monty Taylor
  • Date: 2009-01-30 06:21:54 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: mordred@inaugust.com-20090130062154-ix999h8nnh5z230i
Fixed solaris fixes for linux. Oh, and I also seem to have fixed some more configure stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
static void vio_init(Vio* vio, enum enum_vio_type type,
34
34
                     int sd, uint32_t flags)
35
35
{
36
 
#ifndef HAVE_VIO_READ_BUFF
37
 
  flags&= ~VIO_BUFFERED_READ;
38
 
#endif
39
36
  memset(vio, 0, sizeof(*vio));
40
37
  vio->type     = type;
41
38
  vio->sd       = sd;