diff options
author | David Teirney <david@teirney.net> | 2011-08-28 21:28:41 +1200 |
---|---|---|
committer | David Teirney <david@teirney.net> | 2011-08-29 00:02:33 +1200 |
commit | 2d8d79cf13e384c87c5f7097998ec7864831c3c7 (patch) | |
tree | 368ea247d9c0a884f6f537169ec3d182ea95b28d /lib | |
parent | 0843133e95ef68c8e1654aaae250db04de01a5bb (diff) |
Fix the 15th and 16th parameters for ProgramInfo, neither of which are currently in the libcmyth version of the program_info so set to 0.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cmyth/libcmyth/proginfo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/cmyth/libcmyth/proginfo.c b/lib/cmyth/libcmyth/proginfo.c index b36d38c3ac..cf1aee4453 100644 --- a/lib/cmyth/libcmyth/proginfo.c +++ b/lib/cmyth/libcmyth/proginfo.c @@ -472,8 +472,8 @@ delete_command(cmyth_conn_t control, cmyth_proginfo_t prog, char *cmd) sprintf(buf + strlen(buf), "%s[]:[]", start_ts); sprintf(buf + strlen(buf), "%s[]:[]", end_ts); sprintf(buf + strlen(buf), "%s[]:[]", S(prog->proginfo_unknown_0)); // "duplicate" - sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_recording); - sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_override); + sprintf(buf + strlen(buf), "%ld[]:[]", 0); // "shareable" + sprintf(buf + strlen(buf), "%ld[]:[]", 0); // "findid" sprintf(buf + strlen(buf), "%s[]:[]", S(prog->proginfo_hostname)); sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_source_id); sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_card_id); @@ -1319,8 +1319,8 @@ fill_command(cmyth_conn_t control, cmyth_proginfo_t prog, char *cmd) sprintf(buf + strlen(buf), "%s[]:[]", start_ts); sprintf(buf + strlen(buf), "%s[]:[]", end_ts); sprintf(buf + strlen(buf), "%s[]:[]", S(prog->proginfo_unknown_0)); // "duplicate" - sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_recording); - sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_override); + sprintf(buf + strlen(buf), "%ld[]:[]", 0); // "shareable" + sprintf(buf + strlen(buf), "%ld[]:[]", 0); // "findid" sprintf(buf + strlen(buf), "%s[]:[]", S(prog->proginfo_hostname)); sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_source_id); sprintf(buf + strlen(buf), "%ld[]:[]", prog->proginfo_card_id); |