From 7baa382a1f393b1bff53e269adba2ab194e45574 Mon Sep 17 00:00:00 2001 From: damiano Date: Fri, 19 Feb 1999 09:45:03 +0000 Subject: L'argument bus est retiré de IvyInit (ivy.c, ivy.h, ivyprobe.c) La variable DefaultIvyBus est maintenant de la forme ":" (ivy.c) Les fichiers debian/* ont été corrigés pour le paquetage 3.0 (tag V3_0) --- src/ivyprobe.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ivyprobe.c') diff --git a/src/ivyprobe.c b/src/ivyprobe.c index f3d1bee..970d5b2 100644 --- a/src/ivyprobe.c +++ b/src/ivyprobe.c @@ -193,17 +193,17 @@ int main(int argc, char *argv[]) int c; int timer_test = 0; char dbuf [1024] = ""; - const char* domains = 0; + const char* bus = 0; while ((c = getopt(argc, argv, "d:b:w:t")) != EOF) switch (c) { case 'b': bport = atoi(optarg) ; break; case 'd': - if (domains) + if (bus) strcat (dbuf, ","); else - domains = dbuf; + bus = dbuf; strcat (dbuf, optarg); break; case 'w': @@ -220,7 +220,7 @@ int main(int argc, char *argv[]) cntx = XtCreateApplicationContext(); IvyXtChannelAppContext (cntx); #endif - IvyInit ("IVYPROBE", bport, "IVYPROBE READY", ApplicationCallback,NULL,NULL,NULL); + IvyInit ("IVYPROBE", "IVYPROBE READY", ApplicationCallback,NULL,NULL,NULL); for (; optind < argc; optind++) IvyBindMsg (Callback, NULL, argv[optind]); @@ -231,7 +231,7 @@ int main(int argc, char *argv[]) IvyChannelSetUp (0, NULL, NULL, HandleStdin); #endif - IvyStart (domains); + IvyStart (bus); if (timer_test) { #ifndef XTMAINLOOP -- cgit v1.1