comparison rtsp.c @ 5221:3fab66935e56 libavformat

Unscrewup indentation (pointed out by Diego).
author rbultje
date Fri, 18 Sep 2009 13:18:47 +0000
parents cad276e8f96e
children 2f2a94b37543
comparison
equal deleted inserted replaced
5220:cad276e8f96e 5221:3fab66935e56
856 snprintf(buf1, sizeof(buf1), "Session: %s\r\n", rt->session_id); 856 snprintf(buf1, sizeof(buf1), "Session: %s\r\n", rt->session_id);
857 av_strlcat(buf, buf1, sizeof(buf)); 857 av_strlcat(buf, buf1, sizeof(buf));
858 } 858 }
859 if (rt->auth_b64) 859 if (rt->auth_b64)
860 av_strlcatf(buf, sizeof(buf), 860 av_strlcatf(buf, sizeof(buf),
861 "Authorization: Basic %s\r\n", 861 "Authorization: Basic %s\r\n",
862 rt->auth_b64); 862 rt->auth_b64);
863 av_strlcat(buf, "\r\n", sizeof(buf)); 863 av_strlcat(buf, "\r\n", sizeof(buf));
864 864
865 dprintf(s, "Sending:\n%s--\n", buf); 865 dprintf(s, "Sending:\n%s--\n", buf);
866 866
867 url_write(rt->rtsp_hd, buf, strlen(buf)); 867 url_write(rt->rtsp_hd, buf, strlen(buf));