summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests
diff options
context:
space:
mode:
authornaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-02 22:00:09 +0000
committernaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-02 22:00:09 +0000
commitf218119f9387dc990decd603194272c25d501f17 (patch)
tree0b088dcfdecdbd3ee7e28dec240e31bd1447a37a /TAO/orbsvcs/tests
parent01e17effba6ef6af57cbc7f480068db945d1882c (diff)
downloadATCD-f218119f9387dc990decd603194272c25d501f17.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/orbsvcs/tests')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/ui.cpp25
1 files changed, 14 insertions, 11 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/ui.cpp b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/ui.cpp
index 84a16f8a6d9..79461c7ac49 100644
--- a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/ui.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/ui.cpp
@@ -872,6 +872,7 @@ void UIprocess(int cmdSock)
if (argc_share > i + 1) {
i ++;
vh = argv_share[i];
+ cerr << "vh = " << vh << endl;
}
else break;
}
@@ -879,6 +880,7 @@ void UIprocess(int cmdSock)
if (argc_share > i + 1) {
i ++;
ah = argv_share[i];
+ cerr << "ah = " << ah << endl;
}
else break;
}
@@ -891,6 +893,7 @@ void UIprocess(int cmdSock)
}
if (title != NULL) { /* the init program is supplied by -l */
+ cerr << "title is not null \n";
FILE * fp;
char buf[PATH_SIZE];
char vh[PATH_SIZE];
@@ -957,11 +960,11 @@ void UIprocess(int cmdSock)
else {
vf = vh;
vh = "";
- vb = (char *)malloc(BUFSIZE);
- if (vb != NULL) {
- get_full_path(vf, vb, BUFSIZE);
- vf = vb;
- }
+ // vb = (char *)malloc(BUFSIZE);
+// if (vb != NULL) {
+// get_full_path(vf, vb, BUFSIZE);
+// vf = vb;
+// }
}
}
else vh = vf = "";
@@ -975,16 +978,16 @@ void UIprocess(int cmdSock)
else {
af = ah;
ah = "";
- ab = (char *)malloc(BUFSIZE);
- if (ab != NULL) {
- get_full_path(af, ab, BUFSIZE);
- af = ab;
- }
+// ab = (char *)malloc(BUFSIZE);
+// if (ab != NULL) {
+// get_full_path(af, ab, BUFSIZE);
+// af = ab;
+// }
}
}
else ah = af = "";
- Fprintf(stderr, "Init program: title %s, vh %s, vf %s, ah %s, af %s\n",
+ fprintf(stderr, "Init program: title %s, vh %s, vf %s, ah %s, af %s\n",
title, vh, vf, ah, af);
StartProgram(title, vh, vf, ah, af);
free(title);