Correct decoding a string containing '/'.

PR:		97485
Submitted by:	Mikko Tyolajarvi < mbsd at pacbell dot net >
This commit is contained in:
Jung-uk Kim 2006-05-19 19:06:38 +00:00
parent aa1807d5d6
commit 1761ec1040
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=158749

View file

@ -16,7 +16,7 @@ __FBSDID("$FreeBSD$");
#include <inttypes.h>
#define ADOT 46 /* ASCII '.' */
#define ASLASH ADOT + 1 /* ASCII '/' */
#define ASLASH 47 /* ASCII '/' */
#define A0 48 /* ASCII '0' */
#define AA 65 /* ASCII 'A' */
#define Aa 97 /* ASCII 'a' */