X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/34e4f738bcba58e6d8c4cabbb0b3232a65b42a9d..8404fd750e8d1a635ccb3895e4f0e155e5f5e3cf:/group-parse.c diff --git a/group-parse.c b/group-parse.c index 47998c6..276e2d2 100644 --- a/group-parse.c +++ b/group-parse.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: group-parse.c,v 1.1 2004/04/01 12:50:09 mdw Exp $ + * $Id: group-parse.c,v 1.2 2004/04/03 03:32:05 mdw Exp $ * * Parse group description strings * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: group-parse.c,v $ + * Revision 1.2 2004/04/03 03:32:05 mdw + * General robustification. + * * Revision 1.1 2004/04/01 12:50:09 mdw * Add cyclic group abstraction, with test code. Separate off exponentation * functions for better static linking. Fix a buttload of bugs on the way. @@ -78,6 +81,7 @@ group *group_parse(qd_parse *qd) g = group_ec(&ei); } break; } + if (!g) qd->e = "bad group parameters"; return (g); }