Skip to content

Commit 37b4bac

Browse files
Merge pull request #95 from hi-rajat-kumar/master
fix: the changelist fix bug created in pull request #92
2 parents efa4c61 + 903ef06 commit 37b4bac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

define_all_flags.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ struct flags_parser *add_flags_rr(struct flags_parser *fp)
9999
DEFINE_FLAG_HAS_OPTIONAL_ARGUMENT(fp, log_rtt);
100100
DEFINE_FLAG_PARSER(fp, log_rtt, parse_log_rtt);
101101
DEFINE_FLAG(fp, int, logrtt_entries_per_flow, 10000, 0, "Number of RTT entries to log per flow. Logging stops when this limit is reached.");
102-
DEFINE_FLAG(fp, int, mark, 0, 0, "SO_MARK value; use as 32-bit unsigned");
102+
DEFINE_FLAG(fp, int, mark, 0, 'M', "SO_MARK value; use as 32-bit unsigned");
103103

104104
/* Return the updated fp */
105105
return (fp);
@@ -156,7 +156,7 @@ struct flags_parser *add_flags_tcp_stream(struct flags_parser *fp)
156156
DEFINE_FLAG(fp, bool, enable_tcp_maerts, false, 'M', "Enables TCP_MAERTS test (server writes and client reads). It overrides enable_read, and enable_write");
157157
DEFINE_FLAG(fp, bool, async_connect, false, 0, "use non blocking connect");
158158
DEFINE_FLAG(fp, bool, no_cork, false, 0, "Do not set MSG_MORE when sending over data sockets.");
159-
DEFINE_FLAG(fp, int, mark, 0, 'M', "SO_MARK value; use as 32-bit unsigned");
159+
DEFINE_FLAG(fp, int, mark, 0, 0, "SO_MARK value; use as 32-bit unsigned");
160160

161161
/* Return the updated fp */
162162
return (fp);

0 commit comments

Comments
 (0)