[svn-commits] mjordan: branch 11 r382069 - /branches/11/apps/app_confbridge.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Feb 26 09:38:08 CST 2013


Author: mjordan
Date: Tue Feb 26 09:38:05 2013
New Revision: 382069

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=382069
Log:
Fix typo in r382068

Well, that was embarrassing. Removed an '-l' that somehow got in there.

Modified:
    branches/11/apps/app_confbridge.c

Modified: branches/11/apps/app_confbridge.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/apps/app_confbridge.c?view=diff&rev=382069&r1=382068&r2=382069
==============================================================================
--- branches/11/apps/app_confbridge.c (original)
+++ branches/11/apps/app_confbridge.c Tue Feb 26 09:38:05 2013
@@ -2354,7 +2354,7 @@
 			return complete_confbridge_name(a->line, a->word, a->pos, a->n);
 		}
 		if (a->pos == 3) {
-			return complete_confbridge_participantl(a->argv[2], a->line, a->word, a->pos, a->n);
+			return complete_confbridge_participant(a->argv[2], a->line, a->word, a->pos, a->n);
 		}
 		return NULL;
 	}
@@ -2381,7 +2381,7 @@
 			return complete_confbridge_name(a->line, a->word, a->pos, a->n);
 		}
 		if (a->pos == 3) {
-			return complete_confbridge_participantl(a->argv[2], a->line, a->word, a->pos, a->n);
+			return complete_confbridge_participant(a->argv[2], a->line, a->word, a->pos, a->n);
 		}
 		return NULL;
 	}




More information about the svn-commits mailing list