X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Ffmt_scan.c;h=5103dbd772697372477cda28ae083248f9611872;hp=f72717756e280267f1b439b4873b63d658ab3856;hb=d5b5e6e4813b7fd77dc1664df4304537f3002cf3;hpb=b3628819b4ab903269cd83cc68e453b13534346c diff --git a/sbr/fmt_scan.c b/sbr/fmt_scan.c index f727177..5103dbd 100644 --- a/sbr/fmt_scan.c +++ b/sbr/fmt_scan.c @@ -4,6 +4,9 @@ ** This code is Copyright (c) 2002, by the authors of nmh. See the ** COPYRIGHT file in the root directory of the nmh distribution for ** complete copyright information. +** +** This is the engine that processes the format instructions created by +** fmt_compile (found in fmt_compile.c). */ #include @@ -22,8 +25,6 @@ # include #endif -#define NFMTS MAXARGS - extern char *formataddr(); /* hook for custom address formatting */ extern int fmt_norm; /* defined in sbr/fmt_def.c = AD_NAME */ @@ -474,13 +475,13 @@ fmt_scan(struct format *format, char *scanl, int width, int *dat) ljust++; } - if (!ljust && i > 0 && strlen(str) > i) + if (!ljust && i > 0 && (int)strlen(str) > i) str[i] = '\0'; xp = str; xp += strlen(str) - 1; while (xp > str && isspace(*xp)) *xp-- = '\0'; - if (ljust && i > 0 && strlen(str) > i) + if (ljust && i > 0 && (int)strlen(str) > i) str += strlen(str) - i; } break;