aboutsummaryrefslogtreecommitdiffstats
path: root/comms/conserver/files/patch-readcfg.c
blob: 6128a75f581e3231f0bdb8739b737f2e9f2e480c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- etc/conserver/readcfg.c.orig    Wed Aug  2 19:39:42 2000
+++ etc/conserver/readcfg.c Tue Jul 24 12:09:27 2001
@@ -194,7 +194,7 @@
            if ('\000' != pGE->passwd[0] && 0 != strcmp(pcPass, pGE->passwd)) {
                fprintf(stderr, "%s: %s(%d) group %d has more than one password, first taken\n", progname, pcFile, iLine, iG);
            } else if ((int)strlen(pcPass) > MAXPSWDLEN) {
-               fprintf(stderr, "%s: %s(%d) password too long (%d is the limit)\n", progname, pcFile, iLine, iG, MAXPSWDLEN);
+               fprintf(stderr, "%s: %s(%d) password too long (%d is the limit)\n", progname, pcFile, iLine, MAXPSWDLEN);
            } else {
                (void)strcpy(pGE->passwd, pcPass);
            }