-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patch for issue 3 #4
Conversation
Your patch seemed to introduce a lot of unnecessary whitespace changes to parser.pm to I re-ran mkparse here, which seemed to fix it, and did a fixup of your commit I also tracked the cause of the encode failure, see my new master branch |
fixes #3 |
On 2012-05-31 21:52, Graham Barr wrote:
Yes... I forgot to mention.
Yes... great :) btw.. Since the parser was not an object, I took the liberty of making The module now seems to eat the entire Kerberos5 spec (without module /Peter |
Thats good to hear it can now consume the Kerberos5 spec. At some point I will get it to read the module header Maybe I have a patch on my byacc. I built it so long ago I cannot remember. I will have to figure out exactly what I used to build it and put it in git probably so others do not have the same issue I will push a new release to CPAN today or tomorrow Thanks |
On 2012-06-01 00:33, Graham Barr wrote:
I just discovered that your fix for decoding (7286d70) seems to break Also I was wondering if it wouldn't be a nice feature if find() could It seems calling decode() on a Convert::ASN1 object directly wont try to Please correct me if I'm wrong. /Peter |
Having only one macro defined was meant to be a special case so find was not needed. With multiple macros you must call find. A Convert::ASN1 object has a selected macro. Calling find just clones the current object and selects that macro. When there is only one macro it should be selected in the original object Interesting thought though to find the macro given the tag of whats being decoded. I have created issue #5 |
OK... I had hoped that attachments were preserved in some way when replying to emails from github.
I've never used a github account before, but it seems straight forward, so here's the patch as a pull req.