Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
b5243c87
Commit
b5243c87
authored
May 10, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No commit message
No commit message
parent
1420a0f3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/control/corba/corba.c
modules/control/corba/corba.c
+1
-1
modules/control/http/http.c
modules/control/http/http.c
+2
-2
No files found.
modules/control/corba/corba.c
View file @
b5243c87
...
@@ -28,8 +28,8 @@
...
@@ -28,8 +28,8 @@
#include "MediaControl.h"
#include "MediaControl.h"
#include "orbit/poa/portableserver-poa-type.h"
#include "orbit/poa/portableserver-poa-type.h"
#include <vlc/control.h>
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <vlc/mediacontrol.h>
#include <vlc/intf.h>
#include <vlc/intf.h>
#include <vlc/vout.h>
#include <vlc/vout.h>
#include <vlc/aout.h>
#include <vlc/aout.h>
...
...
modules/control/http/http.c
View file @
b5243c87
...
@@ -478,13 +478,13 @@ static void Callback404( httpd_file_sys_t *p_args, char **pp_data,
...
@@ -478,13 +478,13 @@ static void Callback404( httpd_file_sys_t *p_args, char **pp_data,
{
{
return
;
return
;
}
}
p
+=
sprintf
(
p
,
"<html>
\n
"
);
p
+=
sprintf
(
p
,
"Content-Type: text/html
\n
"
);
p
+=
sprintf
(
p
,
"<html xmlns=
\"
http://www.w3.org/1999/xhtml
\"
>
\n
"
);
p
+=
sprintf
(
p
,
"<head>
\n
"
);
p
+=
sprintf
(
p
,
"<head>
\n
"
);
p
+=
sprintf
(
p
,
"<title>Error loading %s</title>
\n
"
,
p_args
->
file
);
p
+=
sprintf
(
p
,
"<title>Error loading %s</title>
\n
"
,
p_args
->
file
);
p
+=
sprintf
(
p
,
"</head>
\n
"
);
p
+=
sprintf
(
p
,
"</head>
\n
"
);
p
+=
sprintf
(
p
,
"<body>
\n
"
);
p
+=
sprintf
(
p
,
"<body>
\n
"
);
p
+=
sprintf
(
p
,
"<h1><center>Error loading %s for %s</center></h1>
\n
"
,
p_args
->
file
,
p_args
->
name
);
p
+=
sprintf
(
p
,
"<h1><center>Error loading %s for %s</center></h1>
\n
"
,
p_args
->
file
,
p_args
->
name
);
p
+=
sprintf
(
p
,
"<hr />
\n
"
);
p
+=
sprintf
(
p
,
"<a href=
\"
http://www.videolan.org/
\"
>VideoLAN</a>
\n
"
);
p
+=
sprintf
(
p
,
"<a href=
\"
http://www.videolan.org/
\"
>VideoLAN</a>
\n
"
);
p
+=
sprintf
(
p
,
"</body>
\n
"
);
p
+=
sprintf
(
p
,
"</body>
\n
"
);
p
+=
sprintf
(
p
,
"</html>
\n
"
);
p
+=
sprintf
(
p
,
"</html>
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment