Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bjyoungblood committed May 30, 2012
1 parent 3261921 commit 348544d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ exports.client = function(config, smppDefs) {

if (params.sm_length === undefined) {
if (params.short_message !== undefined) {
if (Buffer.isBuffer(params.shortMessage)) {
if (Buffer.isBuffer(params.short_message)) {
params.sm_length = params.short_message.length;
} else {
params.sm_length = Buffer.byteLength(params.short_message);
Expand Down

0 comments on commit 348544d

Please sign in to comment.