Browse Source

xmlrpc: typos an → and

Дилян Палаузов 2 years ago
parent
commit
5e7c0dfc62
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/xmlrpc/xmlrpc.c

+ 1 - 1
src/modules/xmlrpc/xmlrpc.c

@@ -1545,7 +1545,7 @@ static int get_string(char** val, struct xmlrpc_reply* reply,
 			break;
 		case XML_T_INT:
 		case XML_T_BOOL:
-			/* convert str to int an back to str */
+			/* convert str to int and back to str */
 			i = strtol(val_str, &end_ptr, 10);
 			if (val_str==end_ptr){
 				ret=-1;