* ovsec_kadmd.c (main): Put the #ifdef SO_REUSEADDR at the
authorTom Yu <tlyu@mit.edu>
Wed, 24 Jul 1996 22:36:49 +0000 (22:36 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 24 Jul 1996 22:36:49 +0000 (22:36 +0000)
beginning of the line to avoid cpp breakage.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8808 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/server/ChangeLog
src/kadmin/server/ovsec_kadmd.c

index d19151c1967494e4b78de305be3ef3badb16b3aa..5a9329587bc2ca4335524617436296e41fee02b7 100644 (file)
@@ -1,3 +1,8 @@
+Wed Jul 24 18:34:33 1996  Tom Yu  <tlyu@voltage-multiplier.mit.edu>
+
+       * ovsec_kadmd.c (main): Put the #ifdef SO_REUSEADDR at the
+               beginning of the line to avoid cpp breakage.
+
 Wed Jul 24 14:28:04 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
        * Makefile.in (CFLAGS): Use $(LD) instead of $(CC) for linking.
index 34f23389346e7a69b34af8b065be1e897af41983..271ec8c7d0766a6eb2d25c57c720d0873245952f 100644 (file)
@@ -222,7 +222,7 @@ int main(int argc, char *argv[])
          exit(1);
      }
 
-     #ifdef SO_REUSEADDR
+#ifdef SO_REUSEADDR
      /* the old admin server turned on SO_REUSEADDR for non-default
        port numbers.  this was necessary, on solaris, for the tests
        to work.  jhawk argues that the debug and production modes
@@ -249,7 +249,7 @@ int main(int argc, char *argv[])
             exit(1);
         }
      }
-     #endif
+#endif /* SO_REUSEADDR */
      if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
          int oerrno = errno;
          fprintf(stderr, "%s: Cannot bind socket.\n", whoami);