MythLogBot@irc.freenode.net :: #mythtv

Daily chat history

Current users (77):

aca_, aloril, amessina, Anssi, Beirdo_, brfransen, Captain_Murdoch, Chutt_, clever, coling, Cougar, danielk22, dblain, dekarl, ElmerFudd, fetzerch, foobum, foxbuntu, gary_buhrmaster, ghoti, Gibby, gregL, GreyFoxx, Guest17628, IReboot, J-e-f-f-A, jams, jarle, jarryd, jheizer__, joe__, joki, jpabq, jpabq_, jpharvey, jst, jwhite, kormoc, krumer, KungFuJesus, kurre2, kwmonroe, laga, MaverickTech, moparisthebest_, mrand1, MythBuild, natanojl, neufeld, poptix, purserj, rsiebert, seld, Sharky112065, skd5aner, SmallR2002, sp00ge, sphery, sraue, SteveGoodey, stuarta, superm1, taylorr, tgm4883, Tobbe5178, toeb_, tonsofpcs, tris, unforgiven512, wagnerrp, wahrhaft, Wolfgang, wolfgang2, XDS2010, _charly_, _Dweller, _nyloc_
Monday, May 27th, 2013, 21:30 UTC
[21:30:48] natanojl: stuartm: Re fb41064. I think it is a side effect of that strtok_r modifies its first argument. If the mode name is looked up more than once the parsing will fail and NULL will be passed to strtol...
[21:32:23] gary_buhrmaster: wagnerrp: Well, to be fair, the replacement (version 8) for "bork" is only 8 years old :-)
[21:33:27] natanojl: stuartm: This seems to work but is ugly http://pastebin.com/KMaLjat0
[21:34:59] wagnerrp: gary_buhrmaster: apparently some spam tool (gsa-online) started using that as its user agent
[21:35:23] bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has quit (Quit: Ex-Chat)
[21:35:44] wagnerrp: we'd been getting new spam accounts on the wiki for years with the letters 'gsa' somewhere in the name or email address
[21:35:49] wagnerrp: finally figured out what it meant
[21:36:13] gary_buhrmaster: natanojl: I think you will need to check the result from strdup to keep some static analysis happy (because the result can be NULL).
[21:37:19] natanojl: gary_buhrmaster: Yeah, you're right
[21:38:48] gary_buhrmaster: natanojl: No deed goes unpunished :-(
[21:41:06] gary_buhrmaster: wagnerrp: It is almost as if they are giving you a signature to match and drop the connection.
[21:54:56] natanojl: gary_buhrmaster: :-( if(!tmp) continue; should fix that right? Time for bed here. Bork, bork, bork!
[22:00:13] natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 252 seconds)
[22:06:00] Wolfgang1 (Wolfgang1!~Thunderbi@178-27-196-33-dynip.superkabel.de) has joined #mythtv
[22:06:29] peper03 (peper03!~peper03@port-92-203-117-182.dynamic.qsc.de) has quit (Quit: Konversation terminated!)
[22:07:42] Wolfgang1 (Wolfgang1!~Thunderbi@178-27-196-33-dynip.superkabel.de) has quit (Client Quit)
[22:09:55] Wolfgang1 (Wolfgang1!~Thunderbi@178-27-196-33-dynip.superkabel.de) has joined #mythtv
[22:21:09] stuartm: gary_buhrmaster: the id isn't really that important, entirely optional whether you include it or not
[22:27:11] stuartm: wagnerrp: could be bots masquerading as opera, or a build of Opera, maybe even their turbo/mini platform which is reporting an old/wrong agent
[22:27:33] wagnerrp: it's a bot
[22:27:36] stuartm: the latter would actually explain the volume of hits (all those mobile users)
[22:27:55] wagnerrp: i was looking through behavior of a bot when i noticed the bot was using the UA
[22:28:02] stuartm: wagnerrp: ahh, I hadn't read down that far
[22:29:30] gary_buhrmaster: stuartm: I wonder if your '*buf[256] = {NULL}' segfault does not suggest that in at least some cases you do not get 9 modestring tokens. My development system does not have an nVidia card to really test with. Perhaps a check for i being >= 9?
[22:30:41] gary_buhrmaster: stuartm: Well, I would like to try to be as helpful as possible, since (at least in theory), one might want to close the coverity issue (or do you just wait until it "disappears" from the report)?
[22:32:13] gary_buhrmaster: stuartm: (the suggested check being in somewhere near line 292 or so in the code)
[22:32:29] stuartm: gary_buhrmaster: ah, you're probably right, that will be the reason – it's the obvious answer but I just wasn't seeing the wood for the trees :)
[22:34:01] gary_buhrmaster: stuartm: I happened to be looking at/near that code for the dead code reason, so perhaps I heard the sound (of the falling tree) and knew to look over there (behind the curtain).
[22:34:16] stuartm: I think I'll change it to only populate the first 9 too, since we're not reading beyond that there's little point in initialising an array of 256 or spending any more time than is strictly necessary parsing the mode string
[22:36:20] gary_buhrmaster: stuartm: If my conjecture is correct, it could also explain some random segfaults at startup for some, and who knows what settings for some others with nVidia cards.
[22:37:05] stuartm: yeah, that code isn't exactly robust, or pretty
[22:37:11] gary_buhrmaster: stuartm: As you said (I think it was you?) fixing the cppcheck/coverity/scan-build errors often fixes real bugs, even when they seem unimportant.
[22:38:40] stuartm: might be worth switching to use qstring, it would involve less code, less scope for initialisation, off-by-one and other segfault inducing mistakes
[22:38:51] stuartm: gary_buhrmaster: it was me :)
[22:39:26] gary_buhrmaster: stuartm: I second the motion. And it should pass by unanimous consent.
[22:40:12] wagnerrp: we're actually using old c-style character arrays?
[22:41:43] stuartm: in fact, I've been spoilt by QString, it's amazing how much pain is caused by char pointer arrays and STL string functions
[22:42:13] stuartm: wagnerrp: I *think* that code was copy/pasted from another project
[22:43:31] wagnerrp: i'm trying to get a replacement housekeeper wrapped up to commit sometime tomorrow
[22:43:42] wagnerrp: and i'm looking at two variables i had in one of the classes
[22:43:47] wagnerrp: i have no idea what i intended them to do
[22:44:42] paul-h (paul-h!~Paul@94.13.117.6) has quit (Quit: Konversation terminated!)
[22:47:01] stuartm: we've all done that, I've returned to unfinished code several times and I've not just forgotten what the purpose of things was, but the whole plan for how it was supposed to work, I've had to start again more or less from scratch more than once
[22:48:02] wagnerrp: well i at least remember the general design
[22:48:04] wagnerrp: so there is that
[22:50:34] stuartm: reason to be happy then :)
[22:51:46] stuartm: lessons for me were: 1) My memory is terrible 2) Don't walk away leaving work half-finished and expect to come back to it later
[22:52:14] wagnerrp: heh
[22:52:34] wagnerrp: i usually walk away from half-finished work only to come back and decide the existing work was stupid
[22:57:04] stuartm: yeah, sometimes the solution is much better the second time
[23:04:51] wagnerrp: well if nothing else, i'm finally going to fix the randomizer
[23:05:59] wagnerrp: right now, it just takes a linear probability independent of any previous attempt
[23:06:21] wagnerrp: so odds are, it's always going to run within a short time after it hits that halfway mark where it starts checking
[23:10:51] Wolfgang1 (Wolfgang1!~Thunderbi@178-27-196-33-dynip.superkabel.de) has quit (Quit: Wolfgang1)
Tuesday, May 28th, 2013
[00:40:10] joobie (joobie!~joobz@CPE-58-165-59-27.vic.bigpond.net.au) has joined #mythtv
[01:11:55] joki (joki!~joki@p5486020F.dip0.t-ipconnect.de) has quit (Ping timeout: 264 seconds)
[01:42:30] sl1ce (sl1ce!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has quit (Remote host closed the connection)
[02:29:39] _nyloc_ (_nyloc_!~quassel@p4FE4C76B.dip0.t-ipconnect.de) has joined #mythtv
[02:31:15] sl1ce (sl1ce!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has joined #mythtv
[02:31:29] sl1ce (sl1ce!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has quit (Remote host closed the connection)
[02:32:55] sl1ce (sl1ce!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has joined #mythtv
[02:33:13] sl1ce (sl1ce!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has quit (Client Quit)
[02:34:16] nyloc (nyloc!~quassel@pC19F5523.dip0.t-ipconnect.de) has quit (Ping timeout: 276 seconds)
[02:34:30] sl1ce (sl1ce!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has joined #mythtv
[03:05:32] joki (joki!~joki@p54862A19.dip0.t-ipconnect.de) has joined #mythtv
[03:11:29] fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has quit (Ping timeout: 248 seconds)
[03:12:49] fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has joined #mythtv
[04:34:38] ephemer0l (ephemer0l!~ephemer0l@94.249.250.100) has joined #mythtv
[04:34:38] ephemer0l (ephemer0l!~ephemer0l@unaffiliated/ephemer0l) has joined #mythtv
[04:34:38] ephemer0l (ephemer0l!~ephemer0l@94.249.250.100) has quit (Changing host)
[04:46:17] wagnerrp: bah
[04:46:48] wagnerrp: i thought i had somehow managed to write 700 lines of code straight, with no compile errors
[04:47:00] wagnerrp: here i had just forgotten to add the file to the .pro
[04:51:50] gary_buhrmaster: wagnerrp: Well, in one sense, you did write 700 lines of code with no compile errors. No compile == No errors.
[04:52:55] wagnerrp: i did find it strange that it compiled all the way through without complaining about a conflicting class name
[05:58:24] gary_buhrmaster (gary_buhrmaster!~gtb@2001:470:80e4:3::36) has quit (Ping timeout: 245 seconds)
[06:00:52] SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has joined #mythtv
[06:02:45] gary_buhrmaster (gary_buhrmaster!~gtb@2001:470:80e4:3::36) has joined #mythtv
[06:05:05] FabriceMG (FabriceMG!~Thunderbi@LCaen-156-54-30-212.w80-11.abo.wanadoo.fr) has joined #mythtv
[06:09:21] rhpot1991 (rhpot1991!~rhpot1991@ubuntu/member/rhpot1991) has quit (Ping timeout: 240 seconds)
[06:12:37] wagnerrp: well now it's compiling, but i still need to tie in mythfilldatabase
[06:12:40] wagnerrp: something for tomorrow
[06:13:32] rhpot1991 (rhpot1991!~rhpot1991@2001:4968:202:3:c517:dc4a:e868:70ea) has joined #mythtv
[06:13:33] rhpot1991 (rhpot1991!~rhpot1991@2001:4968:202:3:c517:dc4a:e868:70ea) has quit (Changing host)
[06:13:33] rhpot1991 (rhpot1991!~rhpot1991@ubuntu/member/rhpot1991) has joined #mythtv
[06:14:19] SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has quit (Quit: Konversation terminated!)
[06:31:23] dekarl: Meh, could simply have removed FindUnusedPID :( its not used anymore.
[07:08:36] dekarl: jya, is #11497 (yet another instance of AC3 encoder now returns/expects planar audio – fltp instead of s16) something for you? (warpme asked on the dev list but was a bit vague in his mail)
[07:08:36] ** MythLogBot http://code.mythtv.org/trac/ticket/11497 **
[07:24:46] joobie (joobie!~joobz@CPE-58-165-59-27.vic.bigpond.net.au) has quit (Quit: This computer has gone to sleep)
[09:10:28] FabriceMG1 (FabriceMG1!~Thunderbi@217.112.59.207) has joined #mythtv
[09:11:08] FabriceMG2 (FabriceMG2!~Thunderbi@217.112.59.207) has joined #mythtv
[09:12:42] FabriceMG (FabriceMG!~Thunderbi@LCaen-156-54-30-212.w80-11.abo.wanadoo.fr) has quit (Ping timeout: 264 seconds)
[09:14:42] FabriceMG1 (FabriceMG1!~Thunderbi@217.112.59.207) has quit (Ping timeout: 256 seconds)
[10:30:56] exoon (exoon!~exoon@p4FD3BC90.dip0.t-ipconnect.de) has joined #mythtv
[11:28:12] IReboot (IReboot!~doug@CPE10bf48e67915-CM78cd8e7e342d.cpe.net.cable.rogers.com) has joined #mythtv
[11:53:19] dblain (dblain!~dblain@mythtv/developer/dblain) has joined #mythtv
[12:45:11] IReboot (IReboot!~doug@CPE10bf48e67915-CM78cd8e7e342d.cpe.net.cable.rogers.com) has quit (Quit: Ex-Chat)
[12:53:02] stichnot (stichnot!~stichnot@adsl-69-110-157-184.dsl.pltn13.pacbell.net) has joined #mythtv
[12:53:02] stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv
[12:53:02] stichnot (stichnot!~stichnot@adsl-69-110-157-184.dsl.pltn13.pacbell.net) has quit (Changing host)
[12:57:15] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[13:00:07] IReboot (IReboot!~doug@CPE10bf48e67915-CM78cd8e7e342d.cpe.net.cable.rogers.com) has joined #mythtv
[13:20:21] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Remote host closed the connection)
[13:20:51] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[13:37:14] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Remote host closed the connection)
[13:37:44] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[13:41:26] jya (jya!~jyavenard@mythtv/developer/jya) has joined #mythtv
[13:41:42] jya (jya!~jyavenard@mythtv/developer/jya) has quit (Client Quit)
[13:42:03] jya (jya!~jyavenard@mythtv/developer/jya) has joined #mythtv
[13:42:10] jya (jya!~jyavenard@mythtv/developer/jya) has quit (Client Quit)
[13:42:34] jya (jya!~jyavenard@mythtv/developer/jya) has joined #mythtv
[13:42:39] jya: [21448]
[13:42:39] MythLogBot: SVN 21448: (branch master) https://github.com/MythTV/mythtv/commit/7191881b
[14:07:39] Jordack (Jordack!~jordack@h69-131-44-221.plmomi.dedicated.static.tds.net) has joined #mythtv
[14:17:20] ghoti (ghoti!~paul@scratch.it.ca) has quit (Write error: Connection reset by peer)
[14:17:34] Chutt_ (Chutt_!~ijr@cpe-76-190-199-73.neo.res.rr.com) has joined #mythtv
[14:17:37] jya (jya!~jyavenard@mythtv/developer/jya) has quit (Ping timeout: 249 seconds)
[14:17:47] toeb (toeb!~tob@HSI-KBW-37-49-118-160.hsi14.kabel-badenwuerttemberg.de) has quit (Ping timeout: 249 seconds)
[14:17:52] _Dweller (_Dweller!BD@nat/ibm/x-amsfcmalahqvbfad) has quit (Ping timeout: 249 seconds)
[14:17:52] Chutt (Chutt!~ijr@cpe-76-190-199-73.neo.res.rr.com) has quit (Ping timeout: 249 seconds)
[14:17:55] sp00ge (sp00ge!~leebradbu@cpc2-stok17-2-0-cust464.1-4.cable.virginmedia.com) has quit (Ping timeout: 249 seconds)
[14:17:55] clever (clever!~clever@47.54.82.69) has quit (Ping timeout: 249 seconds)
[14:17:58] ghoti_ (ghoti_!~paul@scratch.it.ca) has joined #mythtv
[14:18:01] jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv
[14:18:01] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Remote host closed the connection)
[14:18:02] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[14:18:02] jya_ is now known as jya
[14:18:05] toeb_ (toeb_!~tob@HSI-KBW-37-49-118-160.hsi14.kabel-badenwuerttemberg.de) has joined #mythtv
[14:18:10] clever (clever!~clever@47.54.82.69) has joined #mythtv
[14:18:14] _Dweller (_Dweller!BD@nat/ibm/x-mjtgfxmgurxfxfwz) has joined #mythtv
[14:18:20] sp00ge (sp00ge!~leebradbu@cpc2-stok17-2-0-cust464.1-4.cable.virginmedia.com) has joined #mythtv
[15:07:14] danielk22 (danielk22!~danielk22@exchange.wgen.net) has joined #mythtv
[15:09:43] unforgiven512 (unforgiven512!~unforgive@opana.unforgivendevelopment.com) has quit (Ping timeout: 245 seconds)
[15:12:17] ghoti_ is now known as ghoti
[15:16:04] unforgiven512 (unforgiven512!~unforgive@opana.unforgivendevelopment.com) has joined #mythtv
[15:18:44] jya (jya!~jyavenard@mythtv/developer/jya) has quit (Quit: jya)
[15:38:23] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Remote host closed the connection)
[15:38:56] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[15:43:25] jheizer__ (jheizer__!~jheizer@c-98-226-220-178.hsd1.il.comcast.net) has joined #mythtv
[15:43:25] jheizer_ (jheizer_!~jheizer@c-98-226-220-178.hsd1.il.comcast.net) has quit (Read error: Connection reset by peer)
[15:53:53] kenni (kenni!~kenni@mythtv/developer/kenni) has quit (Read error: Connection reset by peer)
[15:55:29] stichnot (stichnot!~stichnot@65.50.217.56) has joined #mythtv
[15:55:29] stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv
[15:55:29] stichnot (stichnot!~stichnot@65.50.217.56) has quit (Changing host)
[16:03:36] exoon (exoon!~exoon@p4FD3BC90.dip0.t-ipconnect.de) has quit (Remote host closed the connection)
[16:08:11] XDS2010 (XDS2010!uid1218@gateway/web/irccloud.com/x-sehoaipybglulcok) has quit (Remote host closed the connection)
[16:08:14] superm1 (superm1!uid4318@gateway/web/irccloud.com/x-qojdhqcfatifhxeu) has quit (Remote host closed the connection)
[16:17:29] SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has joined #mythtv
[16:24:16] FabriceMG2 (FabriceMG2!~Thunderbi@217.112.59.207) has quit (Quit: FabriceMG2)
[16:38:55] stichnot (stichnot!~stichnot@216.239.45.88) has joined #mythtv
[16:38:55] stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv
[16:38:55] stichnot (stichnot!~stichnot@216.239.45.88) has quit (Changing host)
[16:40:34] danielk22 (danielk22!~danielk22@exchange.wgen.net) has quit (Ping timeout: 276 seconds)
[16:47:24] SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has quit (Quit: Konversation terminated!)
[16:53:58] Merlin83b (Merlin83b!~Daniel@2a00:1ee0:3:1337:c96b:21:8576:28c1) has quit (Read error: Connection reset by peer)
[16:55:53] danielk22 (danielk22!~danielk22@96.57.9.142) has joined #mythtv
[17:12:44] stichnot: gigem: re #11496 – I noticed that you added a PREVRECORDED keybinding to the TV Playback context, but no new functionality in the Playback OSD menu. Were you planning to add something there? (If so, I suspect my new menu code interfered.)
[17:12:44] ** MythLogBot http://code.mythtv.org/trac/ticket/11496 **
[17:17:54] NightMonkey (NightMonkey!~NightrMon@64.124.185.45) has joined #mythtv
[17:17:54] NightMonkey (NightMonkey!~NightrMon@64.124.185.45) has quit (Changing host)
[17:17:54] NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has joined #mythtv
[17:23:08] XDS2010 (XDS2010!uid1218@gateway/web/irccloud.com/x-fvyambskvruwiiya) has joined #mythtv
[17:25:00] gigem: stichnot: It was more of a thinko. I was unsure on whether or not to add it to the playback OSD (and fwiw, add a jump point). I eventually decided to do not do either for now. Leaving the action in TV Playback was an oversight and had nothing to do with your changes.
[17:26:18] stichnot: OK, thanks. I think it's worthwhile to have in the Playback OSD menu, and I'll look into adding it.
[17:28:57] stichnot: Another question on that feature. I tried it on a show that is in syndication, and got a massive number of results that didn't actually record, e.g. recorder failure, previously recorded, etc. Is there a way to filter the results to the set of actual successful past recordings?
[17:30:17] gregL (gregL!~greg@cpe-74-76-105-205.nycap.res.rr.com) has quit (Quit: Leaving)
[17:40:56] gigem: stichnot: No, there isn't any filtering. You should only have about two weeks worth of "didn't records", though. Most everything where duplicate = 0 is supposed to get deleted in housekeeping.
[17:44:34] superm1 (superm1!uid4318@ubuntu/member/superm1) has joined #mythtv
[17:45:39] stichnot: OK. I'm sure I didn't look back very far.
[17:47:52] SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has joined #mythtv
[18:05:45] gregL (gregL!~greg@cpe-74-76-105-205.nycap.res.rr.com) has joined #mythtv
[18:49:14] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Remote host closed the connection)
[18:49:44] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[18:59:31] dekarl (dekarl!~dekarl@p4FCEE8AE.dip0.t-ipconnect.de) has quit (Ping timeout: 240 seconds)
[19:03:55] dekarl (dekarl!~dekarl@p4FCEE09F.dip0.t-ipconnect.de) has joined #mythtv
[19:07:51] Cougar (Cougar!~cougar@2a03:5880:104:10:a596:7b40:5fd9:228d) has quit (Excess Flood)
[19:08:00] Cougar (Cougar!~cougar@2a03:5880:104:10:85be:1c49:c48:bfde) has joined #mythtv
[19:21:30] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Remote host closed the connection)
[19:22:05] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[19:26:04] Steve-Goodey (Steve-Goodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has joined #mythtv
[19:55:09] natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv
[19:57:35] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Remote host closed the connection)
[19:58:05] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has joined #mythtv
[20:37:20] sl1ce (sl1ce!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has quit (Quit: Konversation terminated!)
[21:06:22] dmfrey (dmfrey!~dmfrey@webdefence.cluster-h.websense.net) has quit (Quit: Ex-Chat)
[21:08:05] Jordack (Jordack!~jordack@h69-131-44-221.plmomi.dedicated.static.tds.net) has quit ()
[21:11:15] Dizzle (Dizzle!~Dizzle@pool-71-176-228-31.rcmdva.fios.verizon.net) has joined #mythtv
[21:11:29] Dizzle (Dizzle!~Dizzle@pool-71-176-228-31.rcmdva.fios.verizon.net) has left #mythtv ()
[21:13:09] rsiebert (rsiebert!~quassel@g225058112.adsl.alicedsl.de) has joined #mythtv
[21:16:07] rsiebert_ (rsiebert_!~quassel@g224251210.adsl.alicedsl.de) has quit (Ping timeout: 252 seconds)
[21:21:13] Steve-Goodey (Steve-Goodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has quit (Quit: Konversation terminated!)
[21:26:37] piller (piller!~boaz@76.212.224.136) has joined #mythtv
[21:26:52] piller (piller!~boaz@76.212.224.136) has left #mythtv ()
[21:29:32] Wolfgang (Wolfgang!~Thunderbi@178-27-196-33-dynip.superkabel.de) has joined #mythtv

IRC Logs collected by BeirdoBot.
Please use the above link to report any bugs.