fix ack error when attempt to save a playlist that already exists
git-svn-id: https://svn.musicpd.org/mpd/trunk@1402 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
adc11cb8aa
commit
d0968e0140
@ -12,5 +12,6 @@
|
||||
#define ACK_ERROR_PLAYLIST_LOAD 9
|
||||
#define ACK_ERROR_UPDATE_ALREADY 10
|
||||
#define ACK_ERROR_PLAYER_SYNC 11
|
||||
#define ACK_ERROR_EXIST 12
|
||||
|
||||
#endif
|
||||
|
@ -1177,8 +1177,8 @@ int savePlaylist(FILE * fp, char * utf8file) {
|
||||
free(rfile);
|
||||
|
||||
if(0==stat(actualFile,&st)) {
|
||||
myfprintf(fp, "a file or directory already exists with the name"
|
||||
" \"%s\"", utf8file);
|
||||
commandError(fp, ACK_ERROR_EXIST, "a file or directory already "
|
||||
"exists with the name \"%s\"", utf8file);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user