Added Telugu translation (Krishna Babu)
Updated polish translation (Piotr Drąg)
optimize order of commands in util/cracklib-format (Jan Dittberner, Debian)
+ fix several CC warnings (Jan Dittberner, Debian)
v2.8.13 Compressed dictionary support and better python module
v2.8.11 Better create-cracklib-dict helper script (Mike Frysinger)
v2.8.10 Patch for better hanlding of cracklist dictionary paths in python binding. (Nalin Dahyabhai)
* or its effect upon hardware or computer systems.
*/
-static char vers_id[] = "rules.c : v5.0p3 Alec Muffett 20 May 1993";
+static const char vers_id[] = "rules.c : v5.0p3 Alec Muffett 20 May 1993";
#include "config.h"
#include <string.h>
int val;
char *a, *b, *c, *d, *e, *f, *g;
{
- fprintf(stderr, a, b, c, d, e, f);
+ fprintf(stderr, a, b, c, d, e, f, g);
}
#else
static void
Debug(1, "Mangle: '>' weird argument in '%s'\n", control);
return ((char *) 0);
}
- if (strlen(area) <= limit)
+ if ( (int) strlen(area) <= limit)
{
return ((char *) 0);
}
Debug(1, "Mangle: '<' weird argument in '%s'\n", control);
return ((char *) 0);
}
- if (strlen(area) >= limit)
+ if ( (int) strlen(area) >= limit)
{
return ((char *) 0);
}