Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 179052 | Differences between
and this patch

Collapse All | Expand All

(-)mythtv-0.20.1.orig/libs/libmythupnp/httprequest.cpp (-3 / +2 lines)
Lines 235-246 Link Here
235
            {
235
            {
236
                // sContentType="video/x-msvideo";
236
                // sContentType="video/x-msvideo";
237
                m_nResponseStatus = 206;
237
                m_nResponseStatus = 206;
238
                m_mapRespHeaders[ "Content-Range" ] = QString("%1-%2/%3")
238
                m_mapRespHeaders[ "Content-Range" ] = QString("bytes %1-%2/%3")
239
                                                              .arg( llStart )
239
                                                              .arg( llStart )
240
                                                              .arg( llEnd   )
240
                                                              .arg( llEnd   )
241
                                                              .arg( llSize  );
241
                                                              .arg( llSize  );
242
                //llSize = (llEnd - llStart) + 1;
242
                llSize = (llEnd - llStart) + 1;
243
                llSize = (llEnd - llStart);
244
243
245
            }
244
            }
246
        }
245
        }

Return to bug 179052