|
Check-in Number:
|
2818 | |
| Date: |
2002-Nov-14 09:54:00 (local)
2002-Nov-14 08:54:00 (UTC) |
| User: | rse |
| Branch: | |
| Comment: |
be pedantic about unused variables |
| Tickets: |
|
| Inspections: |
|
| Files: |
|
ossp-pkg/sa/sa.c 1.70 -> 1.71
--- sa.c 2002/11/07 12:44:12 1.70
+++ sa.c 2002/11/14 08:54:00 1.71
@@ -285,8 +285,10 @@
#ifdef HAVE_INET_NTOP
return inet_ntop(family, src, dst, size);
#else
+#ifdef HAVE_INET_NTOA
char *cp;
int n;
+#endif
if (family == AF_INET) {
#ifdef HAVE_INET_NTOA
|
|