*** empty log message ***

This commit is contained in:
François Pinard
1994-11-16 02:55:25 +00:00
parent db2eecfb4b
commit eecb74cb33
2 changed files with 21 additions and 11 deletions

View File

@@ -28,6 +28,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
#include "getopt.h"
#include "tar.h" /* For msg() declaration if STDC_MSG. */
#include <sys/types.h>
#include "port.h" /* For index() redefinition if USG. */
int
getoldopt(argc, argv, optstring, long_options, opt_index)
@@ -41,7 +43,6 @@ getoldopt(argc, argv, optstring, long_options, opt_index)
extern int optind; /* Global argv index */
static char *key; /* Points to next keyletter */
static char use_getopt; /* !=0 if argv[1][0] was '-' */
extern char *index();
char c;
char *place;

View File

@@ -29,18 +29,18 @@
Redone as a library that can replace open, read, write, etc., by
Fred Fish, with some additional work by Arnold Robbins.
Modified to make all rmtXXX calls into macros for speed by Jay Fenlason.
Use -DUSE_REXEC for rexec code, courtesy of Dan Kegel, srs!dan. */
Use -DHAVE_NETDB_H for rexec code, courtesy of Dan Kegel, srs!dan. */
#include <stdio.h>
#include <sys/types.h>
#include <signal.h>
#ifndef NO_MTIO
#ifdef HAVE_SYS_MTIO_H
#include <sys/ioctl.h>
#include <sys/mtio.h>
#endif
#ifdef USE_REXEC
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
@@ -52,6 +52,14 @@
extern int errno;
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef STDC_HEADERS
#include <string.h>
#include <stdlib.h>
#endif
/* Maximum size of a fully qualified host name. */
#define MAXHOSTLEN 257
@@ -192,7 +200,7 @@ status (fildes)
return atoi (cp + 1);
}
#ifdef USE_REXEC
#ifdef HAVE_NETDB_H
/* Execute /etc/rmt as user USER on remote system HOST using rexec.
Return a file descriptor of a bidirectional socket for stdin and stdout.
If USER is NULL, or an empty string, use the current username.
@@ -240,7 +248,7 @@ _rmt_rexec (host, user)
return tape_fd;
}
#endif /* USE_REXEC */
#endif /* HAVE_NETDB_H */
/* Open a magtape device on the system specified in PATH, as the given user.
PATH has the form `[user@]system:/dev/????'.
@@ -328,12 +336,12 @@ __rmt_open (path, oflag, mode, bias)
}
*dev = '\0';
#ifdef USE_REXEC
#ifdef HAVE_NETDB_H
/* Execute the remote command using rexec. */
READ (i) = WRITE (i) = _rmt_rexec (system, login);
if (READ (i) < 0)
return -1;
#else /* !USE_REXEC */
#else /* !HAVE_NETDB_H */
/* Set up the pipes for the `rsh' command, and fork. */
if (pipe (to_rmt[i]) == -1 || pipe (from_rmt[i]) == -1)
@@ -395,7 +403,7 @@ __rmt_open (path, oflag, mode, bias)
/* Parent. */
close (to_rmt[i][0]);
close (from_rmt[i][1]);
#endif /* !USE_REXEC */
#endif /* !HAVE_NETDB_H */
/* Attempt to open the tape device. */
@@ -504,7 +512,8 @@ __rmt_lseek (fildes, offset, whence)
/* Perform a raw tape operation on remote tape connection FILDES.
Return the results of the ioctl, or -1 on error. */
#ifndef NO_MTIO
#ifdef MTIOCTOP
int
__rmt_ioctl (fildes, op, arg)
int fildes, op;
char *arg;
@@ -566,4 +575,4 @@ __rmt_ioctl (fildes, op, arg)
return 0;
}
}
#endif /* NO_MTIO */
#endif