]> arthur.barton.de Git - netatalk.git/commitdiff
remove warnings
authordidg <didg>
Wed, 11 Apr 2007 01:11:10 +0000 (01:11 +0000)
committerdidg <didg>
Wed, 11 Apr 2007 01:11:10 +0000 (01:11 +0000)
libatalk/adouble/ad_flush.c
libatalk/adouble/ad_open.c

index 7cef3f7e0ddbfdf1606e7c27870f179d9b16f747..e942607c5646fdcba22c316bc2279c4d5af39fa9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: ad_flush.c,v 1.8 2006-09-29 09:39:16 didg Exp $
+ * $Id: ad_flush.c,v 1.9 2007-04-11 01:11:10 didg Exp $
  *
  * Copyright (c) 1990,1991 Regents of The University of Michigan.
  * All Rights Reserved.
@@ -139,22 +139,21 @@ int ad_copy_header(struct adouble *add, struct adouble *ads)
 /* ------------------- */
 int  ad_rebuild_sfm_header(struct adouble *ad)
 {
-    u_int32_t          eid;
     u_int32_t          temp;
     
     u_int16_t          attr;
-    char               *buf, *nentp;
+    char               *buf;
 
     /*
      * Rebuild any header information that might have changed.
      */
     buf = ad->ad_data;
     /* FIXME */
-//    temp = htonl( ad->ad_magic );
+/*    temp = htonl( ad->ad_magic ); */
     temp = ad->ad_magic;
     memcpy(buf, &temp, sizeof( temp ));
     
-//    temp = htonl( ad->ad_version );
+/*    temp = htonl( ad->ad_version ); */
     temp = ad->ad_version;
     memcpy(buf +4, &temp, sizeof( temp ));
 
index c0a2f10411d7ea94441b23336769d97d2c891d4a..127651a5ff29b48456db53138f26dfc80c4b7bc4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: ad_open.c,v 1.38 2006-09-29 09:44:59 didg Exp $
+ * $Id: ad_open.c,v 1.39 2007-04-11 01:11:10 didg Exp $
  *
  * Copyright (c) 1999 Adrian Sun (asun@u.washington.edu)
  * Copyright (c) 1990,1991 Regents of The University of Michigan.
@@ -692,10 +692,7 @@ static int ad_header_sfm_read(struct adouble *ad, struct stat *hst)
 {
     char                *buf = ad->ad_data;
     const struct entry  *eid;
-    u_int16_t           nentries;
-    int                 len;
     ssize_t             header_len;
-    static int          warning = 0;
     struct stat         st;
 
     /* read the header */
@@ -710,9 +707,10 @@ static int ad_header_sfm_read(struct adouble *ad, struct stat *hst)
     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
     memcpy(&ad->ad_version, buf + 4, sizeof( ad->ad_version ));
 
-    /* FIXME in the the great Microsoft tradition they aren't in network order */
+    /* FIXME in the great Microsoft tradition they aren't in network order */
 #if 0
     if (ad->ad_magic == SFM_MAGIC && ad->ad_version == AD_VERSION1) {
+      static int          warning = 0;
       if (!warning) {
        LOG(log_debug, logtype_default, "notice: fixing up byte-swapped v1 magic/version.");
        warning++;