* def_realm.c: Add newline at end of file
authorEzra Peisach <epeisach@mit.edu>
Thu, 29 Jun 2000 00:47:11 +0000 (00:47 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 29 Jun 2000 00:47:11 +0000 (00:47 +0000)
        * gmt_mktime.c: Define days_in_month as type int.

        * locate_kdc.c (krb5_locate_srv_dns): Cleanup unused variables.

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

src/lib/krb5/os/ChangeLog
src/lib/krb5/os/def_realm.c
src/lib/krb5/os/gmt_mktime.c
src/lib/krb5/os/locate_kdc.c

index 33f80180cc5842689bf57aedf549ba8ee1bdc912..c9b4ba24fbab76ff1f1e43311d5b2eaf0a8cc38d 100644 (file)
@@ -1,3 +1,11 @@
+2000-06-28  Ezra Peisach  <epeisach@mit.edu>
+
+       * def_realm.c: Add newline at end of file.
+
+       * gmt_mktime.c: Define days_in_month as type int.
+
+       * locate_kdc.c (krb5_locate_srv_dns): Cleanup unused variables.
+
 2000-06-23  Miro Jurisic  <meeroh@mit.edu>
 
        * init_os_ctx.c (os_get_default_config_files): Return ENOENT when
index d9bd017ad472fc86999585535959b53c76de3202..b2a9e1dd1dfedafad78552f2340186e570ef600c 100644 (file)
@@ -210,4 +210,4 @@ krb5_free_default_realm(context, lrealm)
        char FAR* lrealm;
 {
        free (lrealm);
-}
\ No newline at end of file
+}
index b231790ae3d56a20b0e9f128cd1ae1f30e9472b0..1e3eebd1a05c6b0bf8e4813c79067585fa0938d9 100644 (file)
@@ -19,7 +19,7 @@
 /* like mktime, this ignores tm_wday and tm_yday. */
 /* unlike mktime, this does not set them... it only passes a return value. */
 
-static const days_in_month[12] = {
+static const int days_in_month[12] = {
 0,                             /* jan 31 */
 31,                            /* feb 28 */
 59,                            /* mar 31 */
index 53f36d835447217033374b2feb8710d75f5a099e..cdadd0c250aacdba7447dd0daefb6b85429fc6c9 100644 (file)
@@ -272,6 +272,7 @@ krb5_locate_srv_conf(context, realm, name, addr_pp, naddrs, get_masters)
 
         if ( !get_masters || ismaster ) {
             switch (hp->h_addrtype) {
+
 #ifdef HAVE_NETINET_IN_H
             case AF_INET:
                 for (j=0; hp->h_addr_list[j]; j++) {
@@ -350,7 +351,7 @@ krb5_locate_srv_dns(realm, service, protocol, addr_pp, naddrs)
     struct sockaddr_in *sin = NULL;
     struct hostent *hp = NULL;
     int type, class;
-    int status, priority, weight, size, len, numanswers, numqueries, rdlen;
+    int priority, weight, size, len, numanswers, numqueries, rdlen;
     unsigned short port;
     const int hdrsize = sizeof(HEADER);
     struct srv_dns_entry {