aboutsummaryrefslogtreecommitdiffstats
path: root/src/bsc_hack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bsc_hack.c')
-rw-r--r--src/bsc_hack.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bsc_hack.c b/src/bsc_hack.c
index e4f90b40f..7aa8b9aef 100644
--- a/src/bsc_hack.c
+++ b/src/bsc_hack.c
@@ -1059,10 +1059,11 @@ static void handle_options(int argc, char** argv)
{"bts-type", 1, 0, 't'},
{"cardnr", 1, 0, 'C'},
{"release-l2", 0, 0, 'R'},
+ {"timestamp", 0, 0, 'T'},
{0, 0, 0, 0}
};
- c = getopt_long(argc, argv, "hc:n:d:sar:p:f:t:C:RL:l:",
+ c = getopt_long(argc, argv, "hc:n:d:sar:p:f:t:C:RL:l:T",
long_options, &option_index);
if (c == -1)
break;
@@ -1111,6 +1112,9 @@ static void handle_options(int argc, char** argv)
case 'R':
release_l2 = 1;
break;
+ case 'T':
+ debug_timestamp(1);
+ break;
default:
/* ignore */
break;