Skip to content

Commit 39ea8a0

Browse files
committed
fixing debug message
1 parent 3340efb commit 39ea8a0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/parse.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,8 +1145,8 @@ static bool rfc3676_handler (const char *line, bool delsp, int *quotelevel,
11451145
new_quotelevel = get_quotelevel (line);
11461146

11471147
#if DEBUG_PARSE
1148-
printf("RFC3676: Previous quote level: %d\n", quotelevel);
1149-
printf("RFC3676: Previous line flow flag: %d\n", continue_prev_flow_flag);
1148+
printf("RFC3676: Previous quote level: %d\n", *quotelevel);
1149+
printf("RFC3676: Previous line flow flag: %d\n", *continue_prev_flow_flag);
11501150
printf("RFC3676: New quote level: %d\n", new_quotelevel);
11511151
#endif
11521152

@@ -1168,6 +1168,7 @@ static bool rfc3676_handler (const char *line, bool delsp, int *quotelevel,
11681168
}
11691169

11701170
/* Is it a signature separator? */
1171+
/* @@ add sscanf for --\s?\r?\n here */
11711172
if (!strcmp (line + tmp_padding, "-- \n") || !strcmp (line + tmp_padding, "-- \r\n")) {
11721173
/* don't join */
11731174
*continue_prev_flow_flag = FALSE;

0 commit comments

Comments
 (0)