diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-12 00:10:02 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-12 00:10:02 +0000 |
commit | a8741caa54fa6fc14bc290c40cc97361db850953 (patch) | |
tree | 0cc6d2e9e5f5dc6c85497eb51de3b5339dec95b6 /libguile/net_db.c | |
parent | a61ef59b0bb8c556d2ffb950b7f24674cd61034b (diff) | |
download | guile-a8741caa54fa6fc14bc290c40cc97361db850953.tar.gz |
* eval.c, filesys.c, fluids.c, gc.c, gh_data.c, init.c, kw.c,
net_db.c, posix.c, print.c, regex-posix.c, scmsigs.c, socket.c,
stime.c, symbols.c, unif.c, vectors.c, weaks.c: Removed third
argument in call to scm_make_vector.
Diffstat (limited to 'libguile/net_db.c')
-rw-r--r-- | libguile/net_db.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/net_db.c b/libguile/net_db.c index 3bf47cdca..71121a174 100644 --- a/libguile/net_db.c +++ b/libguile/net_db.c @@ -165,7 +165,7 @@ SCM scm_gethost (name) SCM name; { - SCM ans = scm_make_vector (SCM_MAKINUM (5), SCM_UNSPECIFIED, SCM_BOOL_F); + SCM ans = scm_make_vector (SCM_MAKINUM (5), SCM_UNSPECIFIED); SCM *ve = SCM_VELTS (ans); SCM lst = SCM_EOL; struct hostent *entry; @@ -260,7 +260,7 @@ scm_getnet (name) SCM *ve; struct netent *entry; - ans = scm_make_vector (SCM_MAKINUM (4), SCM_UNSPECIFIED, SCM_BOOL_F); + ans = scm_make_vector (SCM_MAKINUM (4), SCM_UNSPECIFIED); ve = SCM_VELTS (ans); if (SCM_UNBNDP (name)) { @@ -312,7 +312,7 @@ scm_getproto (name) SCM *ve; struct protoent *entry; - ans = scm_make_vector (SCM_MAKINUM (3), SCM_UNSPECIFIED, SCM_BOOL_F); + ans = scm_make_vector (SCM_MAKINUM (3), SCM_UNSPECIFIED); ve = SCM_VELTS (ans); if (SCM_UNBNDP (name)) { @@ -361,7 +361,7 @@ scm_return_entry (entry) SCM ans; SCM *ve; - ans = scm_make_vector (SCM_MAKINUM (4), SCM_UNSPECIFIED, SCM_BOOL_F); + ans = scm_make_vector (SCM_MAKINUM (4), SCM_UNSPECIFIED); ve = SCM_VELTS (ans); ve[0] = scm_makfromstr (entry->s_name, (scm_sizet) strlen (entry->s_name), 0); ve[1] = scm_makfromstrs (-1, entry->s_aliases); |