Skip to content

Commit

Permalink
Update config.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Moe-hacker committed Nov 26, 2024
1 parent 1bf13ad commit 6073da4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,9 @@ char *ruri_container_info_to_k2v(const struct RURI_CONTAINER *_Nonnull container
// Time offset.
ret = k2v_add_comment(ret, "Time offset for timens.");
ret = k2v_add_comment(ret, "Default is 0.");
ret = k2v_add_config(llong, ret, "timens_realtime_offset", container->timens_realtime_offset);
ret = k2v_add_comment(ret, "Need unshare enabled.");
ret = k2v_add_config(llong, ret, "timens_monotonic_offset", container->timens_monotonic_offset);
ret = k2v_add_config(llong, ret, "timens_realtime_offset", container->timens_realtime_offset);
ret = k2v_add_newline(ret);
return ret;
}
Expand Down

0 comments on commit 6073da4

Please sign in to comment.