Skip to content
Snippets Groups Projects
Commit 31fab54a authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

s/push_integer/push_int/

Rev: src/modules/_Crypto/des.c:1.3
parent 6315223b
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: des.c,v 1.2 1996/11/07 20:30:48 grubba Exp $ * $Id: des.c,v 1.3 1996/11/07 20:47:32 grubba Exp $
* *
* A pike module for getting access to some common cryptos. * A pike module for getting access to some common cryptos.
* *
...@@ -79,14 +79,14 @@ static void exit_pike_des(struct object *o) ...@@ -79,14 +79,14 @@ static void exit_pike_des(struct object *o)
static void f_query_block_size(INT32 args) static void f_query_block_size(INT32 args)
{ {
pop_n_elems(args); pop_n_elems(args);
push_integer(8); push_int(8);
} }
/* int query_key_length(void) */ /* int query_key_length(void) */
static void f_query_key_length(INT32 args) static void f_query_key_length(INT32 args)
{ {
pop_n_elems(args); pop_n_elems(args);
push_integer(8); push_int(8);
} }
/* void set_key(string) */ /* void set_key(string) */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment