[gnome-keyring] Fix undefined type in egg-asn1x.c
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-keyring] Fix undefined type in egg-asn1x.c
- Date: Mon, 24 Jan 2011 20:43:00 +0000 (UTC)
commit 4050d583e8fe6c5c4bb71f0fd4ba6498cdf5a1b6
Author: Ryan Stonecipher <Ryan Stonecipher Fisher gmail com>
Date: Mon Jan 24 14:42:02 2011 -0600
Fix undefined type in egg-asn1x.c
Mac OSX doesn't have a ulong type
https://bugzilla.gnome.org/show_bug.cgi?id=640362
egg/egg-asn1x.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/egg/egg-asn1x.c b/egg/egg-asn1x.c
index 122cedf..10bd92c 100644
--- a/egg/egg-asn1x.c
+++ b/egg/egg-asn1x.c
@@ -2064,8 +2064,8 @@ anode_write_integer_ulong (gulong value, guchar *data, gsize *n_data)
guchar buf[sizeof (gulong)];
gint bytes, i, off;
- for (i = 0; i < sizeof (ulong); ++i) {
- off = sizeof (ulong) - (i + 1);
+ for (i = 0; i < sizeof (gulong); ++i) {
+ off = sizeof (gulong) - (i + 1);
buf[i] = (value >> (off * 8)) & 0xFF;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]