Changeset 2d025a3b5dc7e8d0946c11be94e99617c2d41d0b
- Timestamp:
- 27/05/08 19:59:26
(6 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1211911166 +0300
- git-parent:
[2bf6c95c4219b23c382afc35e150880ae67929a2]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1211910811 +0300
- Message:
Cosmetic
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6300760 |
r2d025a3 |
|
| 535 | 535 | case MVLC_VLM_SETUP: |
|---|
| 536 | 536 | { |
|---|
| 537 | | static const char *vlm_properties[11] = |
|---|
| | 537 | static const char *vlm_properties[] = |
|---|
| 538 | 538 | { |
|---|
| 539 | 539 | /* no args */ |
|---|
| 540 | 540 | "enabled", "disabled", "loop", "unloop", |
|---|
| 541 | 541 | /* args required */ |
|---|
| 542 | | "input", "output", "option", "date", "period", "repeat", "append", |
|---|
| | 542 | "input", "output", "option", "date", "period", |
|---|
| | 543 | "repeat", "append", "", |
|---|
| 543 | 544 | }; |
|---|
| 544 | 545 | vlm_message_t *vlm_answer; |
|---|
| … | … | |
| 566 | 567 | } |
|---|
| 567 | 568 | /* Parse the request */ |
|---|
| 568 | | for( i = 0; i < 11; i++ ) |
|---|
| | 569 | for( i = 0; vlm_properties[i][0]; i++ ) |
|---|
| 569 | 570 | { |
|---|
| 570 | 571 | char val[512]; |
|---|