Comment 16 for bug 1819197

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

The second hunk has a small mistake:
+ princ_realm = strrchr(princ, "@");

That should be using single quotes:

+ princ_realm = strrchr(princ, '@');