|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T s
Length: 1386 (0x56a) Types: TextFile Names: »sys_init.c«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/quipu/sys_init.c«
/* sys_init.c - System tailoring initialisation */ #ifndef lint static char *rcsid = "$Header: /f/osi/quipu/RCS/sys_init.c,v 6.0 89/03/18 23:41:56 mrose Rel $"; #endif /* * $Header: /f/osi/quipu/RCS/sys_init.c,v 6.0 89/03/18 23:41:56 mrose Rel $ * * * $Log: sys_init.c,v $ * Revision 6.0 89/03/18 23:41:56 mrose * Release 5.0 * */ /* * NOTICE * * Acquisition, use, and distribution of this module and related * materials are subject to the restrictions of a license agreement. * Consult the Preface in the User's Manual for the full terms of * this agreement. * */ #include <stdio.h> #include "quipu/oid.h" #include "tailor.h" #include "logger.h" extern char *dsaoidtable; extern LLog * log_dsap; dsa_sys_init(acptr,avptr) int *acptr; char *** avptr; { char *name; char **ptr; int cnt; extern int parse_line; parse_line = 0; /* stop 'line 1:' being printed in tailor file errors */ name = **avptr; DLOG (log_dsap,LLOG_TRACE,("Initialisation")); cnt = *acptr; ptr = *avptr; dsa_tai_args (acptr,avptr); if (dsa_tai_init(name) != OK) fatal (-43,"Tailoring failed"); dsa_tai_args (&cnt,&ptr); /* second call IS needed !!! */ DLOG (log_dsap,LLOG_TRACE,("Loading oid table (%s)",dsaoidtable)); load_oid_table (dsaoidtable); get_default_acl (); DLOG (log_dsap,LLOG_TRACE,("*** Starting ***")); }