diff options
author | Jack Lloyd <[email protected]> | 2019-03-01 09:00:47 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-03-01 09:00:47 -0500 |
commit | 89b1838943e37b8f11b77f336691c9c6d250587b (patch) | |
tree | c113ee182197f7f54b58a6af00df3640a120ba04 /src/scripts | |
parent | ff9174588a7ab7c1f7c2c88f24cb9a01dc6381f8 (diff) |
s/as_string/to_string/
A few older APIs use as_string where everywhere else uses to_string.
Add to_string's where missing, and deprecate X::as_string.
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/oids.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/oids.py b/src/scripts/oids.py index 5de224f79..5cc61712a 100755 --- a/src/scripts/oids.py +++ b/src/scripts/oids.py @@ -104,7 +104,7 @@ namespace OIDS { std::string lookup(const OID& oid) { - const std::string oid_str = oid.as_string(); + const std::string oid_str = oid.to_string(); %s return std::string(); |