Check-in Number:
|
925 | |
Date: |
2001-Sep-11 08:37:53 (local)
2001-Sep-11 06:37:53 (UTC) |
User: | thl |
Branch: | |
Comment: |
cleaned FIXMEs regarding CU/CUS cleanup sequence logic |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/lmtp2nntp.h 1.3 -> 1.4
--- lmtp2nntp.h 2001/09/10 06:54:06 1.3
+++ lmtp2nntp.h 2001/09/11 06:37:53 1.4
@@ -45,11 +45,8 @@
#define log4(ctx,level,msg,a1,a2,a3,a4) \
l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1, a2, a3, a4)
-#define ZERO 0
-#define STMT(stuff) do { stuff } while (ZERO)
+#define STMT(stuff) do { stuff } while (0)
#define CU(returncode) STMT( rc = returncode; goto CUS; )
-//FIXME #define VCU STMT( goto CUS; )
-//FIXME #define RETURN_WVAL(val) return (val)
-//FIXME #define RETURN_EXRC return (rc)
+#define VCU STMT( goto CUS; )
#endif /* __LMTP2NNTP_H__ */
|
|