Skip to content

Commit

Permalink
* ext/digest/digest.c (rb_digest_base_s_hexdigest): remove a debug
Browse files Browse the repository at this point in the history
  print.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
knu committed Sep 6, 2001
1 parent 99ae768 commit 970dbfd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Thu Sep 6 14:25:15 2001 Akinori MUSHA <[email protected]>

* ext/digest/digest.c (rb_digest_base_s_hexdigest): remove a debug
print.

Sun Aug 26 20:26:40 2001 Koji Arai <[email protected]>

* ext/readline/readline.c: restore terminal mode
Expand Down
2 changes: 1 addition & 1 deletion ext/digest/digest.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ rb_digest_base_s_hexdigest(class, str)

hexdigest = xmalloc(len + 1); /* +1 is for '\0' */
algo->end_func(pctx, hexdigest);
puts(hexdigest);

obj = rb_str_new(hexdigest, len);

free(hexdigest);
Expand Down

0 comments on commit 970dbfd

Please sign in to comment.