summaryrefslogtreecommitdiffstats
path: root/load-git.c
diff options
context:
space:
mode:
Diffstat (limited to 'load-git.c')
-rw-r--r--load-git.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/load-git.c b/load-git.c
index d1fa3e3dd..c4bbf1616 100644
--- a/load-git.c
+++ b/load-git.c
@@ -497,6 +497,12 @@ static void parse_sample_keyvalue(void *_sample, const char *key, const char *va
sample->cns = atoi(value);
return;
}
+
+ if (!strcmp(key, "rbt")) {
+ sample->rbt = get_duration(value);
+ return;
+ }
+
if (!strcmp(key, "po2")) {
pressure_t p = get_pressure(value);
sample->setpoint.mbar = p.mbar;