* gss-server.c (timeval_subtract): Use old-style function definition
authorKen Raeburn <raeburn@mit.edu>
Wed, 13 Mar 1996 04:48:12 +0000 (04:48 +0000)
committerKen Raeburn <raeburn@mit.edu>
Wed, 13 Mar 1996 04:48:12 +0000 (04:48 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7615 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/gss-sample/ChangeLog
src/appl/gss-sample/gss-server.c

index fabf63926068e0ee4728a730d6792e2a9066c273..6862bc86cd27eeee984fc8670e075aeb9807c560 100644 (file)
@@ -1,3 +1,8 @@
+Tue Mar 12 23:46:26 1996  Ken Raeburn  <raeburn@cygnus.com>
+
+       * gss-server.c (timeval_subtract): Use old-style function
+       definition.
+
 Sun Mar  3 12:14:48 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
        * gss-server.c (test_import_export_context): Add second argument
index f87742b56de8ccde9bf544f99524b9f5cefbe1f1..f685ab70fce6acef98f712e88edbac2cd93fd2c6 100644 (file)
@@ -479,8 +479,8 @@ int server_establish_context(s, server_creds, context, client_name)
      return 0;
 }
 
-static float timeval_subtract(struct timeval *tv1,
-                                        struct timeval *tv2)
+static float timeval_subtract(tv1, tv2)
+       struct timeval *tv1, *tv2;
 {
        return ((tv1->tv_sec - tv2->tv_sec) +
                ((float) (tv1->tv_usec - tv2->tv_usec)) / 1000000);