[Asterisk-cvs] asterisk/apps app_read.c,1.11,1.12

markster at lists.digium.com markster at lists.digium.com
Wed Dec 29 08:47:26 CST 2004


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv19155/apps

Modified Files:
	app_read.c 
Log Message:
Various oej fixes (bug #3013)


Index: app_read.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_read.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- app_read.c	29 Dec 2004 13:06:53 -0000	1.11
+++ app_read.c	29 Dec 2004 13:42:14 -0000	1.12
@@ -32,17 +32,19 @@
 
 static char *descrip = 
 "  Read(variable[|filename][|maxdigits][|option][|attempts][|timeout])\n\n"
-"Reads a #-terminated string of digits a certian number of times from the\n"
-"user in to the given variable, optionally playing a given filename first.\n"
+"Reads a #-terminated string of digits a certain number of times from the\n"
+"user in to the given variable.\n"
+"  filename   -- file to play before reading digits.\n"
 "  maxdigits  -- maximum acceptable number of digits. Stops reading after\n"
 "                maxdigits have been entered (without requiring the user to\n"
 "                press the '#' key).\n"
 "                Defaults to 0 - no limit - wait for the user press the '#' key.\n"
 "                Any value below 0 means the same. Max accepted value is 255.\n"
 "  option     -- may be 'skip' to return immediately if the line is not up,\n"
-"                or 'noanswer' to read digits even if the line is not up.\n\n"
-"If attempts is greater than 1, that many attempts will be made in the event no data is entered.\n"
-"If timeout is greater than 0, that value will override the default timeout.\n\n"
+"                or 'noanswer' to read digits even if the line is not up.\n"
+"  attempts   -- if greater than 1, that many attempts will be made in the \n"
+"                event no data is entered.\n"
+"  timeout    -- if greater than 0, that value will override the default timeoft.\n\n"
 "Returns -1 on hangup or error and 0 otherwise.\n";
 
 STANDARD_LOCAL_USER;
@@ -113,10 +115,10 @@
 	if (!(filename) || ast_strlen_zero(filename)) 
 		filename = NULL;
 	if (maxdigitstr) {
-	    maxdigits = atoi(maxdigitstr);
-	    if ((maxdigits<1) || (maxdigits>255)) {
-    		maxdigits = 255;
-	    } else
+		maxdigits = atoi(maxdigitstr);
+		if ((maxdigits<1) || (maxdigits>255)) {
+    			maxdigits = 255;
+		} else if (option_verbose > 2)
 			ast_verbose(VERBOSE_PREFIX_3 "Accepting a maximum of %i digits.\n", maxdigits);
 	}
 	if (!(varname) || ast_strlen_zero(varname)) {
@@ -142,18 +144,22 @@
 			if (res > -1) {
 				pbx_builtin_setvar_helper(chan, varname, tmp);
 				if (!ast_strlen_zero(tmp)) {
-					ast_verbose(VERBOSE_PREFIX_3 "User entered '%s'\n", tmp);
+					if (option_verbose > 2)
+						ast_verbose(VERBOSE_PREFIX_3 "User entered '%s'\n", tmp);
 					tries = 0;
 				} else {
 					tries--;
-					if (tries)
-						ast_verbose(VERBOSE_PREFIX_3 "User entered nothing, %d chance(s) left\n", tries);
-					else
-						ast_verbose(VERBOSE_PREFIX_3 "User entered nothing.\n");
+					if (option_verbose > 2) {
+						if (tries)
+							ast_verbose(VERBOSE_PREFIX_3 "User entered nothing, %d chance(s) left\n", tries);
+						else
+							ast_verbose(VERBOSE_PREFIX_3 "User entered nothing.\n");
+					}
 				}
 				res = 0;
 			} else {
-				ast_verbose(VERBOSE_PREFIX_3 "User disconnected\n");
+				if (option_verbose > 2)
+					ast_verbose(VERBOSE_PREFIX_3 "User disconnected\n");
 			}
 		}
 	}




More information about the svn-commits mailing list