]> git.sur5r.net Git - openldap/commitdiff
defined USE_NONBLOCK for now... need to implement configure detection.
authorKurt Zeilenga <kurt@openldap.org>
Sat, 6 Mar 1999 07:52:33 +0000 (07:52 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 6 Mar 1999 07:52:33 +0000 (07:52 +0000)
rewrote sockbuf_buf_init macro not to expand its argument multiple times.

libraries/liblber/sockbuf.c

index 574c3f2c7516b8e3fc825307e50ab0798e6c987d..827367757c4e1d3b2ab42e0d5e79e385729e08f2 100644 (file)
@@ -564,6 +564,7 @@ int lber_pvt_sb_set_readahead( Sockbuf *sb, int rh )
    return 0;
 }
 
+#define USE_NONBLOCK
 #ifdef USE_NONBLOCK
 int lber_pvt_sb_set_nonblock( Sockbuf *sb, int nb )
 {
@@ -589,11 +590,13 @@ int lber_pvt_sb_set_nonblock( Sockbuf *sb, int nb )
 }
 #endif
         
-#define sockbuf_buf_init( bb ) \
-(bb)->buf_base=NULL;\
-(bb)->buf_ptr = 0;\
-(bb)->buf_end = 0;\
-(bb)->buf_size = 0;
+#define sockbuf_buf_init( bb ) do { \
+               Sockbuf_Buf *sbb = (bb); \
+               sbb->buf_base = NULL; \
+               sbb->buf_ptr = 0; \
+               sbb->buf_end = 0; \
+               sbb->buf_size = 0; \
+       } while(0)
 
 static int 
 sockbuf_buf_destroy( Sockbuf_Buf *buf )