aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scd/ChangeLog5
-rw-r--r--scd/command.c2
-rw-r--r--sm/ChangeLog4
-rw-r--r--sm/keylist.c2
4 files changed, 11 insertions, 2 deletions
diff --git a/scd/ChangeLog b/scd/ChangeLog
index 937010d95..b42c569f1 100644
--- a/scd/ChangeLog
+++ b/scd/ChangeLog
@@ -1,3 +1,8 @@
+2009-01-12 Werner Koch <[email protected]>
+
+ * command.c (send_client_notifications) [HAVE_W32_SYSTEM]: Fix
+ brackets.
+
2009-01-08 Werner Koch <[email protected]>
* iso7816.c (iso7816_read_record, iso7816_read_binary): Pass 0 for
diff --git a/scd/command.c b/scd/command.c
index c535acbff..31c5f1748 100644
--- a/scd/command.c
+++ b/scd/command.c
@@ -2034,8 +2034,8 @@ send_client_notifications (void)
killidx++;
}
}
-#endif /*!HAVE_W32_SYSTEM*/
}
+#endif /*!HAVE_W32_SYSTEM*/
}
}
}
diff --git a/sm/ChangeLog b/sm/ChangeLog
index dae0a544c..6035c057f 100644
--- a/sm/ChangeLog
+++ b/sm/ChangeLog
@@ -1,3 +1,7 @@
+2009-01-12 Werner Koch <[email protected]>
+
+ * keylist.c (print_utf8_extn_raw): Cast printf precision argument.
+
2009-01-08 Werner Koch <[email protected]>
* fingerprint.c (gpgsm_get_keygrip_hexstring): Add error detection.
diff --git a/sm/keylist.c b/sm/keylist.c
index 1e77bfca4..b0d2f56dd 100644
--- a/sm/keylist.c
+++ b/sm/keylist.c
@@ -597,7 +597,7 @@ print_utf8_extn_raw (estream_t fp, int indent,
es_fprintf (fp, "%*s[%s]\n", indent, "", gpg_strerror (err));
return;
}
- es_fprintf (fp, "%*s(%.*s)\n", indent, "", objlen, der);
+ es_fprintf (fp, "%*s(%.*s)\n", indent, "", (int)objlen, der);
}