[Mono-bugs] [Bug 72282][Nor] New - al does not support hexadecimal input for /algid and /flags
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 7 Feb 2005 07:12:54 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by gert.driesen@pandora.be.
http://bugzilla.ximian.com/show_bug.cgi?id=72282
--- shadow/72282 2005-02-07 07:12:54.000000000 -0500
+++ shadow/72282.tmp.13598 2005-02-07 07:12:54.000000000 -0500
@@ -0,0 +1,33 @@
+Bug#: 72282
+Product: Mono: Tools
+Version: 1.1
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: tools
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: gert.driesen@pandora.be
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: al does not support hexadecimal input for /algid and /flags
+
+MS al expects hexadecimal input for the /algid and /flags options of al,
+but Mono's al currently does not.
+
+I'd propose to change Mono's al to match MS.NET. This is as easy as
+modifying this line:
+
+int val = Int32.Parse (arg);
+
+to
+
+uint val = Convert.ToUInt32(arg, 16);
+
+for both options.
+
+If necessary, I'll add a patch for these changes.