[asterisk-commits] bweschke: trunk r59036 - in /trunk: ./ apps/app_followme.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sun Mar 18 09:59:49 MST 2007


Author: bweschke
Date: Sun Mar 18 11:59:48 2007
New Revision: 59036

URL: http://svn.digium.com/view/asterisk?view=rev&rev=59036
Log:
Merged revisions 59035 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r59035 | bweschke | 2007-03-18 12:36:44 -0400 (Sun, 18 Mar 2007) | 3 lines

 Don't return a non-zero return code if the profile doesn't exist, to match what the documentation says it already does. (#9307 Reported by kkiely)


........

Modified:
    trunk/   (props changed)
    trunk/apps/app_followme.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/apps/app_followme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_followme.c?view=diff&rev=59036&r1=59035&r2=59036
==============================================================================
--- trunk/apps/app_followme.c (original)
+++ trunk/apps/app_followme.c Sun Mar 18 11:59:48 2007
@@ -952,7 +952,7 @@
 		ast_log(LOG_DEBUG, "New profile %s.\n", args.followmeid);
 	if (!f) { 
 		ast_log(LOG_WARNING, "Profile requested, %s, not found in the configuration.\n", args.followmeid);
-		res = -1;
+		res = 0;
 	} else {
 		/* XXX TODO: Reinsert the db check value to see whether or not follow-me is on or off */
 



More information about the asterisk-commits mailing list