diff options
| -rw-r--r-- | audio/audio-api.txt | 4 | ||||
| -rw-r--r-- | audio/manager.c | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/audio/audio-api.txt b/audio/audio-api.txt index 76751941..f391415f 100644 --- a/audio/audio-api.txt +++ b/audio/audio-api.txt @@ -21,8 +21,8 @@ Methods  			The return parameter is the object path of the newly  			created object. The method will fail if the remote -			device does not as a minimum implement the interfaces -			indicated by the interfaces parameter. +			device does not support all of the interfaces listed +			in the interfaces parameter.  		void RemoveDevice(string path) diff --git a/audio/manager.c b/audio/manager.c index b0e91ee9..d4ebdffd 100644 --- a/audio/manager.c +++ b/audio/manager.c @@ -439,7 +439,7 @@ static void finish_sdp(struct audio_sdp_data *data, gboolean success)  		debug("No audio audio related service records were found");  		success = FALSE;  		err_not_supported(connection, data->msg); -		success = FALSE; +		goto done;  	}  	for (i = 0; i < required_len; i++) { | 
