summaryrefslogtreecommitdiff
path: root/lib/coding.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2012-03-19 10:14:19 +0100
committerSimon Josefsson <simon@josefsson.org>2012-03-19 10:14:19 +0100
commite4c605d4c575d9f56f44970fdf3bee567b8fac18 (patch)
tree8f2e4e80663f25be739760c5b15efb382ea34d66 /lib/coding.c
parent8ab3a5231ef83834a17818edf2f2b1911b02bb05 (diff)
downloadlibtasn1-e4c605d4c575d9f56f44970fdf3bee567b8fac18.tar.gz
libtasn1-e4c605d4c575d9f56f44970fdf3bee567b8fac18.tar.bz2
libtasn1-e4c605d4c575d9f56f44970fdf3bee567b8fac18.zip
Indent code.
Diffstat (limited to 'lib/coding.c')
-rw-r--r--lib/coding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/coding.c b/lib/coding.c
index 8b72eba..307dd40 100644
--- a/lib/coding.c
+++ b/lib/coding.c
@@ -256,7 +256,7 @@ _asn1_objectid_der (unsigned char *str, unsigned char *der, int *der_len)
char *temp, *n_end, *n_start;
unsigned char bit7;
unsigned long val, val1 = 0;
- int str_len = _asn1_strlen(str);
+ int str_len = _asn1_strlen (str);
max_len = *der_len;
@@ -266,7 +266,7 @@ _asn1_objectid_der (unsigned char *str, unsigned char *der, int *der_len)
memcpy (temp, str, str_len);
temp[str_len] = '.';
- temp[str_len+1] = 0;
+ temp[str_len + 1] = 0;
counter = 0;
n_start = temp;