Check-in Number:
|
1482 | |
Date: |
2002-Jan-02 14:21:07 (local)
2002-Jan-02 13:21:07 (UTC) |
User: | rse |
Branch: | |
Comment: |
ops, syntax error |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/sa/sa.c 1.45 -> 1.46
--- sa.c 2002/01/02 13:20:11 1.45
+++ sa.c 2002/01/02 13:21:07 1.46
@@ -67,13 +67,13 @@
#endif
/* backward compatibility for PF_XXX (still unused) */
-if !defined(PF_LOCAL) && defined(AF_LOCAL)
+#if !defined(PF_LOCAL) && defined(AF_LOCAL)
#define PF_LOCAL AF_LOCAL
#endif
-if !defined(PF_INET) && defined(AF_INET)
+#if !defined(PF_INET) && defined(AF_INET)
#define PF_INET AF_INET
#endif
-if !defined(PF_INET6) && defined(AF_INET6)
+#if !defined(PF_INET6) && defined(AF_INET6)
#define PF_INET6 AF_INET6
#endif
|
|