asn1: Fix a typo
authorVolker Lendecke <vl@samba.org>
Mon, 11 Jan 2016 20:38:20 +0000 (21:38 +0100)
committerUri Simchoni <uri@samba.org>
Wed, 13 Jan 2016 06:48:31 +0000 (07:48 +0100)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Uri Simchoni <uri@samba.org>
lib/util/asn1.c

index 9ce7c23d4f3eaf2fbd4c1ce472d25ed35de9a5d5..a1597f0c4166bfb1190f05494dc2926b63586bb9 100644 (file)
@@ -284,7 +284,7 @@ bool ber_write_OID_String(TALLOC_CTX *mem_ctx, DATA_BLOB *blob, const char *OID)
        if (newp[0] != '.') return false;
        p = newp + 1;
 
-       /*the ber representation can't use more space then the string one */
+       /*the ber representation can't use more space than the string one */
        *blob = data_blob_talloc(mem_ctx, NULL, strlen(OID));
        if (!blob->data) return false;