From d0968e0140878de812af143b2690a476c69f2364 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Tue, 8 Jun 2004 22:43:25 +0000 Subject: 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 --- src/ack.h | 1 + src/playlist.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ack.h b/src/ack.h index 839452e90..b1ae0d6d5 100644 --- a/src/ack.h +++ b/src/ack.h @@ -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 diff --git a/src/playlist.c b/src/playlist.c index 75943f33d..8d5ad150b 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -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; } -- cgit v1.2.3