Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
674b0ac3
Commit
674b0ac3
authored
Nov 10, 2008
by
Led
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.8.4
parent
53f5a137
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
ChangeLog
ChangeLog
+3
-0
command.c
command.c
+1
-1
configure
configure
+1
-1
configure.in
configure.in
+1
-1
tables.c
tables.c
+2
-2
No files found.
ChangeLog
View file @
674b0ac3
ver 0.8.4 (2003/8/13)
1) Fix a bug where garbage is returned with errors in "list" command
ver 0.8.3 (2003/8/12)
1) Fix a compilation error on older linux systems
2) Fix a bug in searching by title
...
...
command.c
View file @
674b0ac3
...
...
@@ -363,7 +363,7 @@ int processCommand(FILE * fp, int argArrayLength, char ** argArray) {
}
else
if
(
0
==
strcmp
(
argArray
[
0
],
COMMAND_LIST
))
{
char
*
arg1
=
NULL
;
if
(
argArrayLength
>
3
)
{
if
(
argArrayLength
>
3
||
argArrayLength
<
2
)
{
myfprintf
(
fp
,
"%s wrong number of arguments for
\"
%s
\"\n
"
,
COMMAND_RESPOND_ERROR
,
argArray
[
0
]);
return
-
1
;
}
...
...
configure
View file @
674b0ac3
...
...
@@ -1713,7 +1713,7 @@ fi
# Define the identity of the package.
PACKAGE
=
mpd
VERSION
=
0.8.
3
VERSION
=
0.8.
4
cat
>>
confdefs.h
<<
_ACEOF
...
...
configure.in
View file @
674b0ac3
AC_INIT(main.c)
AM_INIT_AUTOMAKE(mpd, 0.8.
3
)
AM_INIT_AUTOMAKE(mpd, 0.8.
4
)
AC_PROG_CC
AC_PROG_INSTALL
...
...
tables.c
View file @
674b0ac3
...
...
@@ -387,7 +387,7 @@ int printAllAlbums(FILE * fp, char * artist) {
int
printAllKeysOfTable
(
FILE
*
fp
,
char
*
table
,
char
*
arg1
)
{
if
(
strcmp
(
table
,
TABLES_ARTIST
)
==
0
)
{
if
(
arg1
!=
NULL
)
{
myfprintf
(
fp
,
"%s %s table takes no args
\n
"
,
COMMAND_RESPOND_ERROR
);
myfprintf
(
fp
,
"%s %s table takes no args
\n
"
,
COMMAND_RESPOND_ERROR
,
table
);
return
-
1
;
}
return
printAllArtists
(
fp
);
...
...
@@ -396,7 +396,7 @@ int printAllKeysOfTable(FILE * fp, char * table, char * arg1) {
return
printAllAlbums
(
fp
,
arg1
);
}
else
{
myfprintf
(
fp
,
"%s table
\"
%s
\"
does not exist or not available for listing
\n
"
);
myfprintf
(
fp
,
"%s table
\"
%s
\"
does not exist or not available for listing
\n
"
,
COMMAND_RESPOND_ERROR
,
table
);
return
-
1
;
}
}
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