diff options
| author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
|---|---|---|
| committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
| commit | 4399be3cbd35324f7a2c00d77229d995b4022138 (patch) | |
| tree | a3959baf797787918878bec6d58d6a0fb743ad0a /gnu/libexec/uucp/libuuconf | |
| parent | 709e8f9ae1d734c1a163c9b421df4b8153939ce7 (diff) | |
Notes
Diffstat (limited to 'gnu/libexec/uucp/libuuconf')
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/bool.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/callin.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/calout.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/cmdarg.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/errstr.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/hdial.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/hdnams.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/hinit.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/hsinfo.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/hsnams.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/rdlocs.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/syssub.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/tdialc.c | 6 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/tdnams.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/tportc.c | 4 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/uucnfi.h | 2 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/vport.c | 6 | ||||
| -rw-r--r-- | gnu/libexec/uucp/libuuconf/vsinfo.c | 4 |
18 files changed, 37 insertions, 37 deletions
diff --git a/gnu/libexec/uucp/libuuconf/bool.c b/gnu/libexec/uucp/libuuconf/bool.c index 73072a3e6c6f..f05c0fa411cf 100644 --- a/gnu/libexec/uucp/libuuconf/bool.c +++ b/gnu/libexec/uucp/libuuconf/bool.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_bool_rcsid[] = "$Id: bool.c,v 1.3 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_bool_rcsid[] = "$Id: bool.c,v 1.2 1994/05/07 18:11:58 ache Exp $"; #endif /* Parse a boolean string into a variable. This is called by @@ -61,4 +61,4 @@ _uuconf_iboolean (qglobal, zval, pi) } return UUCONF_CMDTABRET_CONTINUE; -} +} diff --git a/gnu/libexec/uucp/libuuconf/callin.c b/gnu/libexec/uucp/libuuconf/callin.c index fd58b18f98ff..017a0bb9a319 100644 --- a/gnu/libexec/uucp/libuuconf/callin.c +++ b/gnu/libexec/uucp/libuuconf/callin.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_callin_rcsid[] = "$Id: callin.c,v 1.8 1994/03/29 01:18:20 ian Rel $"; +const char _uuconf_callin_rcsid[] = "$Id: callin.c,v 1.2 1994/05/07 18:11:58 ache Exp $"; #endif #include <errno.h> @@ -122,7 +122,7 @@ uuconf_callin (pglobal, pcmpfn, pinfo) zcolon = strchr (zcolon, ':'); if (zcolon != NULL) *zcolon = ' '; - } + } iret = uuconf_cmd_line (pglobal, zline, as, (pointer) &s, ipcheck, 0, (pointer) NULL); if ((iret & UUCONF_CMDTABRET_EXIT) != 0) diff --git a/gnu/libexec/uucp/libuuconf/calout.c b/gnu/libexec/uucp/libuuconf/calout.c index 4f893946f336..0cfb302674b4 100644 --- a/gnu/libexec/uucp/libuuconf/calout.c +++ b/gnu/libexec/uucp/libuuconf/calout.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_calout_rcsid[] = "$Id: calout.c,v 1.4 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_calout_rcsid[] = "$Id: calout.c,v 1.2 1994/05/07 18:12:00 ache Exp $"; #endif #include <errno.h> @@ -61,7 +61,7 @@ uuconf_callout (pglobal, qsys, pzlog, pzpass) || (qsys->uuconf_zcall_password != NULL && strcmp (qsys->uuconf_zcall_password, "*") == 0)) return UUCONF_NOT_FOUND; - + if (qsys->uuconf_zcall_login != NULL) { *pzlog = strdup (qsys->uuconf_zcall_login); diff --git a/gnu/libexec/uucp/libuuconf/cmdarg.c b/gnu/libexec/uucp/libuuconf/cmdarg.c index e08c499c73fa..ff4a80ee0e9f 100644 --- a/gnu/libexec/uucp/libuuconf/cmdarg.c +++ b/gnu/libexec/uucp/libuuconf/cmdarg.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_cmdarg_rcsid[] = "$Id: cmdarg.c,v 1.4 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_cmdarg_rcsid[] = "$Id: cmdarg.c,v 1.2 1994/05/07 18:12:02 ache Exp $"; #endif #include <ctype.h> @@ -141,7 +141,7 @@ uuconf_cmd_args (pglobal, cargs, pzargs, qtab, pinfo, pfiunknown, iflags, { char ***ppz = (char ***) q->uuconf_pvar; int iret; - + *ppz = NULL; iret = _uuconf_iadd_string (qglobal, (char *) NULL, FALSE, FALSE, ppz, pblock); diff --git a/gnu/libexec/uucp/libuuconf/errstr.c b/gnu/libexec/uucp/libuuconf/errstr.c index 40c97e81b95b..94e179e9b172 100644 --- a/gnu/libexec/uucp/libuuconf/errstr.c +++ b/gnu/libexec/uucp/libuuconf/errstr.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_errstr_rcsid[] = "$Id: errstr.c,v 1.3 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_errstr_rcsid[] = "$Id: errstr.c,v 1.2 1994/05/07 18:12:12 ache Exp $"; #endif static char *zeprint_num P((char *zbuf, size_t cbuf, int ival)); @@ -177,7 +177,7 @@ uuconf_error_string (pglobal, ierr, zbuf, cbuf) --cbuf; } } - + if (cbuf > 0 && cfile > 0) { *zbuf++ = ' '; diff --git a/gnu/libexec/uucp/libuuconf/hdial.c b/gnu/libexec/uucp/libuuconf/hdial.c index 909bdb222219..85777d7b379e 100644 --- a/gnu/libexec/uucp/libuuconf/hdial.c +++ b/gnu/libexec/uucp/libuuconf/hdial.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_hdial_rcsid[] = "$Id: hdial.c,v 1.4 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_hdial_rcsid[] = "$Id: hdial.c,v 1.2 1994/05/07 18:12:20 ache Exp $"; #endif #include <errno.h> @@ -133,7 +133,7 @@ uuconf_hdb_dialer_info (pglobal, zname, qdialer) bnext = *zsubs; while (bnext != '\0') { - if (bnext == '=') + if (bnext == '=') qdialer->uuconf_zdialtone = zsubs + 1; else if (bnext == '-') qdialer->uuconf_zpause = zsubs + 1; diff --git a/gnu/libexec/uucp/libuuconf/hdnams.c b/gnu/libexec/uucp/libuuconf/hdnams.c index 5051a7fbe9c8..480c50da1d50 100644 --- a/gnu/libexec/uucp/libuuconf/hdnams.c +++ b/gnu/libexec/uucp/libuuconf/hdnams.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_hdnams_rcsid[] = "$Id: hdnams.c,v 1.4 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_hdnams_rcsid[] = "$Id: hdnams.c,v 1.2 1994/05/07 18:12:21 ache Exp $"; #endif #include <errno.h> @@ -65,7 +65,7 @@ uuconf_hdb_dialer_names (pglobal, ppzdialers) iret = UUCONF_FOPEN_FAILED | UUCONF_ERROR_ERRNO; break; } - + qglobal->ilineno = 0; while (_uuconf_getline (qglobal, &zline, &cline, e) > 0) diff --git a/gnu/libexec/uucp/libuuconf/hinit.c b/gnu/libexec/uucp/libuuconf/hinit.c index 06155d9c5d67..5fbb6658dcc1 100644 --- a/gnu/libexec/uucp/libuuconf/hinit.c +++ b/gnu/libexec/uucp/libuuconf/hinit.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_hinit_rcsid[] = "$Id: hinit.c,v 1.6 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_hinit_rcsid[] = "$Id: hinit.c,v 1.2 1994/05/07 18:12:23 ache Exp $"; #endif #include <errno.h> @@ -165,7 +165,7 @@ uuconf_hdb_init (ppglobal, zprogram) { char ***ppz; int cfiles, ifile; - + if (strncmp (pzargs[i], "systems=", sizeof "systems=" - 1) == 0) { diff --git a/gnu/libexec/uucp/libuuconf/hsinfo.c b/gnu/libexec/uucp/libuuconf/hsinfo.c index 6c92b3b8317a..d9ad790de80a 100644 --- a/gnu/libexec/uucp/libuuconf/hsinfo.c +++ b/gnu/libexec/uucp/libuuconf/hsinfo.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_hsinfo_rcsid[] = "$Id: hsinfo.c,v 1.10 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_hsinfo_rcsid[] = "$Id: hsinfo.c,v 1.2 1994/05/07 18:12:27 ache Exp $"; #endif #include <errno.h> @@ -343,7 +343,7 @@ _uuconf_ihdb_system_internal (qglobal, zsystem, qsys) if (iret != UUCONF_SUCCESS) break; } - + (void) fclose (e); if (iret != UUCONF_SUCCESS) diff --git a/gnu/libexec/uucp/libuuconf/hsnams.c b/gnu/libexec/uucp/libuuconf/hsnams.c index 73f3dbb2ab27..476835ec0d10 100644 --- a/gnu/libexec/uucp/libuuconf/hsnams.c +++ b/gnu/libexec/uucp/libuuconf/hsnams.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_hsnams_rcsid[] = "$Id: hsnams.c,v 1.4 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_hsnams_rcsid[] = "$Id: hsnams.c,v 1.2 1994/05/07 18:12:28 ache Exp $"; #endif #include <errno.h> @@ -67,7 +67,7 @@ uuconf_hdb_system_names (pglobal, ppzsystems, falias) iret = UUCONF_FOPEN_FAILED | UUCONF_ERROR_ERRNO; break; } - + qglobal->ilineno = 0; while (_uuconf_getline (qglobal, &zline, &cline, e) > 0) diff --git a/gnu/libexec/uucp/libuuconf/rdlocs.c b/gnu/libexec/uucp/libuuconf/rdlocs.c index 4393cc8c6f61..cf6e1b066690 100644 --- a/gnu/libexec/uucp/libuuconf/rdlocs.c +++ b/gnu/libexec/uucp/libuuconf/rdlocs.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_rdlocs_rcsid[] = "$Id: rdlocs.c,v 1.5 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_rdlocs_rcsid[] = "$Id: rdlocs.c,v 1.2 1994/05/07 18:12:46 ache Exp $"; #endif #include <errno.h> @@ -174,7 +174,7 @@ _uuconf_iread_locations (qglobal) qglobal->qprocess->qsyslocs = si.qlocs; qglobal->qprocess->qvalidate = si.qvals; qglobal->qprocess->fread_syslocs = TRUE; - } + } return iret; } diff --git a/gnu/libexec/uucp/libuuconf/syssub.c b/gnu/libexec/uucp/libuuconf/syssub.c index 4a209d8fc72c..97b5f32c064b 100644 --- a/gnu/libexec/uucp/libuuconf/syssub.c +++ b/gnu/libexec/uucp/libuuconf/syssub.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_syssub_rcsid[] = "$Id: syssub.c,v 1.11 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_syssub_rcsid[] = "$Id: syssub.c,v 1.2 1994/05/07 18:12:59 ache Exp $"; #endif #include <errno.h> @@ -451,7 +451,7 @@ _uuconf_isystem_basic_default (qglobal, q) qglobal->ierrno = errno; return UUCONF_MALLOC_FAILED | UUCONF_ERROR_ERRNO; } - + memcpy ((pointer) zdup, (pointer) CMDPATH, sizeof CMDPATH); pz = NULL; csplit = 0; diff --git a/gnu/libexec/uucp/libuuconf/tdialc.c b/gnu/libexec/uucp/libuuconf/tdialc.c index 02063b2180d3..bac29e406196 100644 --- a/gnu/libexec/uucp/libuuconf/tdialc.c +++ b/gnu/libexec/uucp/libuuconf/tdialc.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_tdialc_rcsid[] = "$Id: tdialc.c,v 1.4 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_tdialc_rcsid[] = "$Id: tdialc.c,v 1.2 1994/05/07 18:13:02 ache Exp $"; #endif static int idchat P((pointer pglobal, int argc, char **argv, pointer pvar, @@ -157,7 +157,7 @@ iddtr_toggle (pglobal, argc, argv, pvar, pinfo) string into a trivial chat script. */ /*ARGSUSED*/ -static int +static int idcomplete (pglobal, argc, argv, pvar, pinfo) pointer pglobal; int argc; @@ -192,7 +192,7 @@ idproto_param (pglobal, argc, argv, pvar, pinfo) struct uuconf_proto_param **pqparam = (struct uuconf_proto_param **) pvar; struct uuconf_dialer *qdialer = (struct uuconf_dialer *) pinfo; - return _uuconf_iadd_proto_param (qglobal, argc - 1, argv + 1, pqparam, + return _uuconf_iadd_proto_param (qglobal, argc - 1, argv + 1, pqparam, qdialer->uuconf_palloc); } diff --git a/gnu/libexec/uucp/libuuconf/tdnams.c b/gnu/libexec/uucp/libuuconf/tdnams.c index fa55a1f121e6..191e9937f9df 100644 --- a/gnu/libexec/uucp/libuuconf/tdnams.c +++ b/gnu/libexec/uucp/libuuconf/tdnams.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_tdnams_rcsid[] = "$Id: tdnams.c,v 1.4 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_tdnams_rcsid[] = "$Id: tdnams.c,v 1.2 1994/05/07 18:13:03 ache Exp $"; #endif #include <errno.h> @@ -46,7 +46,7 @@ uuconf_taylor_dialer_names (pglobal, ppzdialers) struct uuconf_cmdtab as[2]; char **pz; int iret; - + *ppzdialers = NULL; as[0].uuconf_zcmd = "dialer"; diff --git a/gnu/libexec/uucp/libuuconf/tportc.c b/gnu/libexec/uucp/libuuconf/tportc.c index ec15cdfc9a6d..0a7b0fbc893a 100644 --- a/gnu/libexec/uucp/libuuconf/tportc.c +++ b/gnu/libexec/uucp/libuuconf/tportc.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_tportc_rcsid[] = "$Id: tportc.c,v 1.12 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_tportc_rcsid[] = "$Id: tportc.c,v 1.2 1994/05/07 18:13:11 ache Exp $"; #endif #include <errno.h> @@ -249,7 +249,7 @@ _uuconf_iport_cmd (qglobal, argc, argv, qport) if (i >= CPORT_TYPES) return UUCONF_SYNTAX_ERROR; - + ttype = (enum uuconf_porttype) i; } diff --git a/gnu/libexec/uucp/libuuconf/uucnfi.h b/gnu/libexec/uucp/libuuconf/uucnfi.h index 98122794f104..3bab167171ca 100644 --- a/gnu/libexec/uucp/libuuconf/uucnfi.h +++ b/gnu/libexec/uucp/libuuconf/uucnfi.h @@ -150,7 +150,7 @@ struct sunknown int cargs; /* Arguments. */ char **pzargs; -}; +}; /* This structure is used to hold the locations of systems within the Taylor UUCP sys files. */ diff --git a/gnu/libexec/uucp/libuuconf/vport.c b/gnu/libexec/uucp/libuuconf/vport.c index 5ce283903f00..5aac38248936 100644 --- a/gnu/libexec/uucp/libuuconf/vport.c +++ b/gnu/libexec/uucp/libuuconf/vport.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_vport_rcsid[] = "$Id: vport.c,v 1.7 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_vport_rcsid[] = "$Id: vport.c,v 1.2 1994/05/07 18:13:22 ache Exp $"; #endif #include <errno.h> @@ -100,9 +100,9 @@ uuconf_v2_find_port (pglobal, zname, ibaud, ihighbaud, pifn, pinfo, qport) } /* An entry in L-devices is - + type device dial-device baud dialer - + The type (normally "ACU") is treated as the name. */ /* If there aren't enough entries, ignore the line; this diff --git a/gnu/libexec/uucp/libuuconf/vsinfo.c b/gnu/libexec/uucp/libuuconf/vsinfo.c index ac6d3f253768..005efedd605a 100644 --- a/gnu/libexec/uucp/libuuconf/vsinfo.c +++ b/gnu/libexec/uucp/libuuconf/vsinfo.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char _uuconf_vsinfo_rcsid[] = "$Id: vsinfo.c,v 1.10 1994/01/30 21:14:29 ian Rel $"; +const char _uuconf_vsinfo_rcsid[] = "$Id: vsinfo.c,v 1.2 1994/05/07 18:13:23 ache Exp $"; #endif #include <errno.h> @@ -531,7 +531,7 @@ _uuconf_iv2_system_internal (qglobal, zsystem, qsys) qsys->uuconf_pzpath = pznew; zline = NULL; cline = 0; - } + } if (getline (&zline, &cline, e) < 0) { |
