This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Kerberos5 diff and OpenSSH frustration


I promised several of you that have written that as soon I I finished the Kerberos5 port, I would
provide the diff.  It is at the bottom of this e-mail.

So, here is where I have gotten to.  The client side part of the Kerberos port is working fine. I
have still problems with the daemon portion.  I am not sure, but I think it may have to do with my
inability to resolve the ruserok undefined call problem. At this time I have commented out that
function call in the particular .c files.  I had the same problem with the recvmsg function, and it
is also commented out.  

The port does work for kinit, kdestroy, klist, rlogin, etc.  

If anyone can tackle the ruserok problem, I welcome the help.

On the SSH stuff.  Since the OpenSSH source does not have the hooks for Kerberos5, I went through
the process of trying the patches based on the work done by Daniel Kouril.  See 
http://www.sxw.org.uk/computing/patches/openssh.html.

The gssapi patch install went well, but the OpenSSH 2.5.2p2 had quite a few hunks fail.  Needless to
say, when compiling in the Lerberos5 libs and headers, it did not resolve the failures that result
from adding the option KerberosOrLocalPasswd to SSHD_CONFIG.

I feel like I have gotten really close on this, but time constrants have about shut me out now.  Oh,
I also applied the patch to offending files in the SSH source that were also failing on the original
compile attempt.  See it here:

#ifdef HAVE_CYGWIN
#undef S_IXUSR
#undef S_IXGRP
#undef S_IXOTH
#define S_IXUSR 0100
#define S_IXGRP 0010
#define S_IXOTH 0001
#endif

If anyone has the extra bandwidth and interest to pick up this, I am still interested in trying to
get the Kerberos5 and SSH intergration in Cygwin to work.

jh


BEGINNING OF DIFF FILE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Only in krb5-1.2.2.nocompile.fixed/src: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: config.log
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: config.status
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: forward.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: kcmd.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: klogind.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: krcp.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: krlogin.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: krlogind.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: krsh.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: krshd.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: kshd.exe
diff -rc krb5-1.2.2/src/appl/bsd/login.c krb5-1.2.2.nocompile.fixed/src/appl/bsd/login.c
*** krb5-1.2.2/src/appl/bsd/login.c	Wed Feb 28 15:06:43 2001
--- krb5-1.2.2.nocompile.fixed/src/appl/bsd/login.c	Wed May  9 12:53:57 2001
***************
*** 80,86 ****
   */
  
  #include <libpty.h>
! 
  #ifdef HAVE_UNISTD_H
  #include <unistd.h>
  #endif
--- 80,88 ----
   */
  
  #include <libpty.h>
! #include <unistd.h>
! /* #include <sys/special/fake-stdlib.h> */
! /* #include <sys/special/netdb.h> */
  #ifdef HAVE_UNISTD_H
  #include <unistd.h>
  #endif
***************
*** 149,155 ****
  #define handler_set(S,OLD)		(signal ((S), (OLD)))
  #endif
  
- 
  #ifdef HAVE_SHADOW
  #include <shadow.h>
  #endif
--- 151,156 ----
***************
*** 2173,2179 ****
      pwd = getpwnam(username);
      if (pwd == NULL)
  	return(-1);
!     return(ruserok(host, (pwd->pw_uid == 0), rusername, username));
  }
  
  #ifdef KRB4_KLOGIN
--- 2174,2180 ----
      pwd = getpwnam(username);
      if (pwd == NULL)
  	return(-1);
! /*    return(ruserok(host, (pwd->pw_uid == 0), rusername, username)); */
  }
  
  #ifdef KRB4_KLOGIN
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: login.c~
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: login.krb5
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: login.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: rcp.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: rlogin.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/bsd: rsh.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl: config.log
Only in krb5-1.2.2.nocompile.fixed/src/appl: config.status
Only in krb5-1.2.2.nocompile.fixed/src/appl/gss-sample: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/gss-sample: gss-client.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/gss-sample: gss-client.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gss-sample: gss-misc.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gss-sample: gss-server.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/gss-sample: gss-server.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp: config.log
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp: config.status
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: Makefile
diff -rc krb5-1.2.2/src/appl/gssftp/ftp/cmds.c krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp/cmds.c
*** krb5-1.2.2/src/appl/gssftp/ftp/cmds.c	Wed Feb 28 15:06:44 2001
--- krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp/cmds.c	Wed May  9 12:54:05 2001
***************
*** 70,76 ****
  extern	char *home;
  extern	char *remglob();
  extern	char *getenv();
! #define strerror(error) (sys_errlist[error])
  #ifdef NEED_SYS_ERRLIST
  extern char *sys_errlist[];
  #endif
--- 70,76 ----
  extern	char *home;
  extern	char *remglob();
  extern	char *getenv();
! #define strerror(error) (_sys_errlist[error])
  #ifdef NEED_SYS_ERRLIST
  extern char *sys_errlist[];
  #endif
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: cmds.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: cmdtab.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: domacro.o
diff -rc krb5-1.2.2/src/appl/gssftp/ftp/ftp.c krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp/ftp.c
*** krb5-1.2.2/src/appl/gssftp/ftp/ftp.c	Wed Feb 28 15:06:45 2001
--- krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp/ftp.c	Wed May  9 12:54:05 2001
***************
*** 154,160 ****
  sig_t	lostpeer();
  off_t	restart_point = 0;
  
! #define strerror(error) (sys_errlist[error])
  #ifdef NEED_SYS_ERRLIST
  extern char *sys_errlist[];
  #endif
--- 154,160 ----
  sig_t	lostpeer();
  off_t	restart_point = 0;
  
! #define strerror(error) (_sys_errlist[error])
  #ifdef NEED_SYS_ERRLIST
  extern char *sys_errlist[];
  #endif
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: ftp.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: ftp.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: getpass.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: glob.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: main.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: pclose.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: radix.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: ruserpass.o
diff -rc krb5-1.2.2/src/appl/gssftp/ftp/secure.c
krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp/secure.c
*** krb5-1.2.2/src/appl/gssftp/ftp/secure.c	Wed Feb 28 15:06:45 2001
--- krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp/secure.c	Wed May  9 12:54:07 2001
***************
*** 244,250 ****
  		} else {
  			bufsize = 0;
  			secure_error("%s (in malloc of PROT buffer)",
! 				     sys_errlist[errno]);
  			return(ERR);
  		}
  	}
--- 244,250 ----
  		} else {
  			bufsize = 0;
  			secure_error("%s (in malloc of PROT buffer)",
! 				     _sys_errlist[errno]);
  			return(ERR);
  		}
  	}
***************
*** 291,297 ****
  			} else {
  				bufsize = 0;
  				secure_error("%s (in malloc of PROT buffer)",
! 					     sys_errlist[errno]);
  				return(ERR);
  			}
  		}
--- 291,297 ----
  			} else {
  				bufsize = 0;
  				secure_error("%s (in malloc of PROT buffer)",
! 					     _sys_errlist[errno]);
  				return(ERR);
  			}
  		}
***************
*** 320,326 ****
  				!= sizeof(length)) {
  			secure_error("Couldn't read PROT buffer length: %d/%s",
  				     kerror,
! 				     kerror == -1 ? sys_errlist[errno]
  				     : "premature EOF");
  			return(ERR);
  		}
--- 320,326 ----
  				!= sizeof(length)) {
  			secure_error("Couldn't read PROT buffer length: %d/%s",
  				     kerror,
! 				     kerror == -1 ? _sys_errlist[errno]
  				     : "premature EOF");
  			return(ERR);
  		}
***************
*** 332,338 ****
  		if ((kerror = looping_read(fd, ucbuf, length)) != length) {
  			secure_error("Couldn't read %u byte PROT buffer: %s",
  					length, kerror == -1 ?
! 					sys_errlist[errno] : "premature EOF");
  			return(ERR);
  		}
  		/* Other auth types go here ... */
--- 332,338 ----
  		if ((kerror = looping_read(fd, ucbuf, length)) != length) {
  			secure_error("Couldn't read %u byte PROT buffer: %s",
  					length, kerror == -1 ?
! 					_sys_errlist[errno] : "premature EOF");
  			return(ERR);
  		}
  		/* Other auth types go here ... */
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftp: secure.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: ftpcmd.c
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: ftpcmd.o
diff -rc krb5-1.2.2/src/appl/gssftp/ftpd/ftpd.c
krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd/ftpd.c
*** krb5-1.2.2/src/appl/gssftp/ftpd/ftpd.c	Wed Feb 28 15:06:45 2001
--- krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd/ftpd.c	Wed May  9 12:54:07 2001
***************
*** 109,115 ****
  #define L_INCR 1
  #endif
  
! #define strerror(error)	(sys_errlist[error])
  #ifdef NEED_SYS_ERRLIST
  extern char *sys_errlist[];
  #endif
--- 109,115 ----
  #define L_INCR 1
  #endif
  
! #define strerror(error)	(_sys_errlist[error])
  #ifdef NEED_SYS_ERRLIST
  extern char *sys_errlist[];
  #endif
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: ftpd.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: ftpd.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: glob.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: popen.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: radix.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: secure.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/gssftp/ftpd: vers.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/sample: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/sample/sclient: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/sample/sclient: sclient.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/sample/sclient: sclient.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/sample/sserver: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/sample/sserver: sserver.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/sample/sserver: sserver.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/simple: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/simple/client: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/simple/client: sim_client.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/simple/client: sim_client.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/simple/server: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/simple/server: sim_server.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/simple/server: sim_server.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet: config.log
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet: config.status
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: auth.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: config.log
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: config.status
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: enc_des.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: encrypt.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: forward.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: genget.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: getent.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: kerberos.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: kerberos5.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: libtelnet.a
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: misc.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: parsetos.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/libtelnet: spx.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: authenc.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: commands.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: config.log
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: config.status
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: main.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: network.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: ring.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: sys_bsd.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: telnet.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: telnet.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: terminal.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnet: utilities.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: authenc.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: config.log
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: config.status
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: global.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: slc.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: state.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: sys_term.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: telnetd.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: telnetd.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: termio-tn.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: termios-tn.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: termstat.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/telnet/telnetd: utility.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/user_user: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/appl/user_user: client.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/user_user: server.o
Only in krb5-1.2.2.nocompile.fixed/src/appl/user_user: uuclient.exe
Only in krb5-1.2.2.nocompile.fixed/src/appl/user_user: uuserver.exe
Only in krb5-1.2.2.nocompile.fixed/src/clients: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/clients: config.log
Only in krb5-1.2.2.nocompile.fixed/src/clients: config.status
Only in krb5-1.2.2.nocompile.fixed/src/clients/kdestroy: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/clients/kdestroy: kdestroy.exe
Only in krb5-1.2.2.nocompile.fixed/src/clients/kdestroy: kdestroy.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/kinit: Makefile
diff -rc krb5-1.2.2/src/clients/kinit/kinit.c krb5-1.2.2.nocompile.fixed/src/clients/kinit/kinit.c
*** krb5-1.2.2/src/clients/kinit/kinit.c	Wed Feb 28 15:06:53 2001
--- krb5-1.2.2.nocompile.fixed/src/clients/kinit/kinit.c	Wed May  9 12:54:26 2001
***************
*** 37,48 ****
  #include <string.h>
  #include <stdio.h>
  #include <time.h>
! 
  #ifdef GETOPT_LONG
  #include <getopt.h>
  #else
  #ifdef HAVE_UNISTD_H
! #include <unistd.h>
  #ifdef sun
  /* SunOS4 unistd didn't declare these; okay to make unconditional?  */
  extern int optind;
--- 37,48 ----
  #include <string.h>
  #include <stdio.h>
  #include <time.h>
! /* #include <sys/special/unistd.h> */
  #ifdef GETOPT_LONG
  #include <getopt.h>
  #else
  #ifdef HAVE_UNISTD_H
! /* #include <unistd.h> */
  #ifdef sun
  /* SunOS4 unistd didn't declare these; okay to make unconditional?  */
  extern int optind;
***************
*** 54,59 ****
--- 54,62 ----
  extern int getopt();
  #endif /* HAVE_UNISTD_H */
  #endif /* GETOPT_LONG */
+ 
+ extern int optind;
+ extern char *optarg;
  
  #ifndef _WIN32
  #define GET_PROGNAME(x) (strrchr((x), '/') ? strrchr((x), '/')+1 : (x))
Only in krb5-1.2.2.nocompile.fixed/src/clients/kinit: kinit.exe
Only in krb5-1.2.2.nocompile.fixed/src/clients/kinit: kinit.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/klist: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/clients/klist: klist.exe
Only in krb5-1.2.2.nocompile.fixed/src/clients/klist: klist.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/kpasswd: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/clients/kpasswd: kpasswd.exe
Only in krb5-1.2.2.nocompile.fixed/src/clients/kpasswd: kpasswd.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: authorization.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: ccache.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: heuristic.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: krb_auth_su.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: ksu.exe
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: main.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/ksu: xmalloc.o
Only in krb5-1.2.2.nocompile.fixed/src/clients/kvno: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/clients/kvno: kvno.exe
Only in krb5-1.2.2.nocompile.fixed/src/clients/kvno: kvno.o
Only in krb5-1.2.2.nocompile.fixed/src/config-files: Makefile
Only in krb5-1.2.2.nocompile.fixed/src: config.cache
Only in krb5-1.2.2.nocompile.fixed/src: config.log
Only in krb5-1.2.2.nocompile.fixed/src: config.status
Only in krb5-1.2.2.nocompile.fixed/src/gen-manpages: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/include: gssapi
Only in krb5-1.2.2.nocompile.fixed/src/include: gssrpc
Only in krb5-1.2.2.nocompile.fixed/src/include: kadm5
Only in krb5-1.2.2.nocompile.fixed/src/include/kerberosIV: krb_err.h
Only in krb5-1.2.2.nocompile.fixed/src/include: ss
Only in krb5-1.2.2.nocompile.fixed/src/kadmin: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: dump.c~
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: getdate.c
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: getdate.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: kadmin.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: kadmin.local
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: kadmin.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: kadmin_ct.c
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: kadmin_ct.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: keytab.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/cli: ss_wrapper.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin: config.log
Only in krb5-1.2.2.nocompile.fixed/src/kadmin: config.status
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: dump.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: dumpv4.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: import_err.c
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: import_err.h
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: import_err.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: kadm5_create.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: kdb5_create.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: kdb5_destroy.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: kdb5_stash.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: kdb5_util.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: kdb5_util.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: loadv4.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: ovload.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: string_table.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/dbutil: strtok.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/ktutil: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/ktutil: ktutil.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/ktutil: ktutil.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/ktutil: ktutil_ct.c
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/ktutil: ktutil_ct.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/ktutil: ktutil_funcs.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd: kpasswd.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd: kpasswd.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd: kpasswd_strings.c
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd: kpasswd_strings.h
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd: kpasswd_strings.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd: tty_kpasswd.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/passwd/unit-test: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: kadm_rpc_svc.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: kadmind.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: misc.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: ovsec_kadmd.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: schpw.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: server_glue_v1.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/server: server_stubs.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: compare_dump.pl
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: env-setup.sh
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: env-setup.stamp
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: fixup-conf-files.pl
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: make-host-keytab.pl
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: qualname.pl
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: restore_files.sh
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: simple_dump.pl
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/scripts: verify_xrunner_report.pl
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/util: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/util: ovsec_kadm_clnt_tcl.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/util: ovsec_kadm_srv_tcl.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/util: tcl_kadm5.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/util: tcl_ovsec_kadm.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/testing/util: test.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v4server: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v4server/unit-test: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: adm_conn.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: adm_rw.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: kpasswd.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: main.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: proto_serv.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: srv_net.o
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: v5passwd.exe
Only in krb5-1.2.2.nocompile.fixed/src/kadmin/v5passwdd: v5passwdd.exe
Only in krb5-1.2.2.nocompile.fixed/src/kdc: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/kdc: config.log
Only in krb5-1.2.2.nocompile.fixed/src/kdc: config.status
Only in krb5-1.2.2.nocompile.fixed/src/kdc: dispatch.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: do_as_req.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: do_tgs_req.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: extern.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: kdc5_err.c
Only in krb5-1.2.2.nocompile.fixed/src/kdc: kdc5_err.h
Only in krb5-1.2.2.nocompile.fixed/src/kdc: kdc5_err.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: kdc_preauth.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: kdc_util.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: kerberos_v4.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: krb5kdc.exe
Only in krb5-1.2.2.nocompile.fixed/src/kdc: logger.c
Only in krb5-1.2.2.nocompile.fixed/src/kdc: logger.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: main.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: network.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: policy.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: replay.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: rtest.exe
Only in krb5-1.2.2.nocompile.fixed/src/kdc: rtest.o
Only in krb5-1.2.2.nocompile.fixed/src/kdc: sock2p.o
Only in krb5-1.2.2.nocompile.fixed/src/lib: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: cksum.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: des.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: enc_dec.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: k4_glue.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: key_parity.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: key_sched.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: libdes425.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: new_rnd_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: pcbc_encrypt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: quad_cksum.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: random_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: read_passwd.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: str_to_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: unix_time.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: util.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/des425: weak_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: disp_com_err_status.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: disp_major_status.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: gssapi.h
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: gssapi_err_generic.c
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: gssapi_err_generic.h
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: gssapi_err_generic.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: gssapi_generic.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: oid_ops.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: rel_buffer.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: rel_oid_set.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_buffer.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_canonhost.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_dup.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_oid.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_ordering.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_set.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_token.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/generic: util_validate.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi: gss_libinit.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: accept_sec_context.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: acquire_cred.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: add_cred.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: canon_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: compare_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: context_time.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: copy_ccache.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: delete_sec_context.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: disp_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: disp_status.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: duplicate_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: export_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: export_sec_context.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: get_tkt_flags.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: gssapi_err_krb5.c
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: gssapi_err_krb5.h
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: gssapi_err_krb5.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: gssapi_krb5.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: import_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: import_sec_context.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: indicate_mechs.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: init_sec_context.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: inq_context.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: inq_cred.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: inq_names.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: k5seal.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: k5unseal.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: krb5_gss_glue.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: process_context_token.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: rel_cred.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: rel_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: rel_oid.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: seal.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: ser_sctx.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: set_ccache.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: sign.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: unseal.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: util_cksum.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: util_crypt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: util_ctxsetup.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: util_seed.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: util_seqnum.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: val_cred.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: verify.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi/krb5: wrap_size_limit.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/gssapi: libgssapi_krb5.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: adb_err.c
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: adb_err.h
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: adb_err.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: alt_prof.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: chpass_util.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: chpass_util_strings.c
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: chpass_util_strings.h
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: chpass_util_strings.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: client_init.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: client_principal.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: client_rpc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: clnt_chpass_util.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: clnt_policy.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: clnt_privs.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/clnt: libkadm5clnt.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: kadm_err.c
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: kadm_err.h
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: kadm_err.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: kadm_rpc_xdr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: logger.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: misc_free.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: ovsec_glue.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: adb_free.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: adb_openclose.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: adb_policy.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: adb_xdr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: libkadm5srv.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: server_acl.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: server_dict.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: server_init.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: server_kdb.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: server_misc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: svr_chpass_util.o
diff -rc krb5-1.2.2/src/lib/kadm5/srv/svr_iters.c
krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv/svr_iters.c
*** krb5-1.2.2/src/lib/kadm5/srv/svr_iters.c	Wed Feb 28 15:07:38 2001
--- krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv/svr_iters.c	Wed May  9 12:55:46 2001
***************
*** 8,34 ****
  static char *rcsid = "$Header: /cvs/krbdev/krb5/src/lib/kadm5/srv/svr_iters.c,v 1.2 1996/11/07
21:43:14 bjaspan Exp $";
  #endif
  
- #if defined(HAVE_COMPILE) && defined(HAVE_STEP)
- #define SOLARIS_REGEXPS
- #elif defined(HAVE_REGCOMP) && defined(HAVE_REGEXEC)
- #define POSIX_REGEXPS
- #elif defined(HAVE_RE_COMP) && defined(HAVE_RE_EXEC)
- #define BSD_REGEXPS
- #else
- #error I cannot find any regexp functions
- #endif
  
  #include	<sys/types.h>
  #include	<string.h>
  #include	<kadm5/admin.h>
  #include	"adb.h"
  #include	<dyn.h>
- #ifdef SOLARIS_REGEXPS
- #include	<regexpr.h>
- #endif
- #ifdef POSIX_REGEXPS
  #include	<regex.h>
! #endif
  #include <stdlib.h>
  
  #include	"server_internal.h"
--- 8,21 ----
  static char *rcsid = "$Header: /cvs/krbdev/krb5/src/lib/kadm5/srv/svr_iters.c,v 1.2 1996/11/07
21:43:14 bjaspan Exp $";
  #endif
  
  
  #include	<sys/types.h>
  #include	<string.h>
  #include	<kadm5/admin.h>
  #include	"adb.h"
  #include	<dyn.h>
  #include	<regex.h>
! 
  #include <stdlib.h>
  
  #include	"server_internal.h"
***************
*** 40,48 ****
  #ifdef SOLARIS_REGEXPS
       char *expbuf;
  #endif
- #ifdef POSIX_REGEXPS
       regex_t preg;
- #endif
  };
  
  /*
--- 27,33 ----
***************
*** 133,141 ****
  #ifdef SOLARIS_REGEXPS
  	 (step(name, data->expbuf) != 0)
  #endif
- #ifdef POSIX_REGEXPS
  	 (regexec(&data->preg, name, 0, NULL, 0) == 0)
- #endif
  #ifdef BSD_REGEXPS
  	 (re_exec(name) != 0)
  #endif
--- 118,124 ----
***************
*** 190,198 ****
  #ifdef SOLARIS_REGEXPS
  	 ((data.expbuf = compile(regexp, NULL, NULL)) == NULL)
  #endif
- #ifdef POSIX_REGEXPS
  	 ((regcomp(&data.preg, regexp, REG_NOSUB)) != 0)
- #endif
  #ifdef BSD_REGEXPS
  	 ((msg = (char *) re_comp(regexp)) != NULL)
  #endif
--- 173,179 ----
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: svr_iters.c~
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: svr_iters.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: svr_policy.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/srv: svr_principal.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5: str_conv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: client-handle-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: client-iter-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: client-setkey-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: client_init.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: destroy-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: destroy-test.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: handle-test.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: init-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: init-test.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: iter-test.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: lock-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: lock-test.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: randkey-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: randkey-test.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: server-handle-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: server-iter-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: server-setkey-test.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/kadm5/unit-test: setkey-test.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: decrypt_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: encrypt_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: fetch_mkey.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: kdb_cpw.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: kdb_db2.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: kdb_xdr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: keytab.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: libkdb5.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: setup_mkey.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: store_mkey.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/kdb: verify_mky.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/db: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_add.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_close.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_defops.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_endget.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_g_ent.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_g_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_next.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_ops.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_remove.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_resolv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_ssget.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_util.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_wops.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ktf_wreslv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/file: ser_ktf.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: ktadd.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: ktbase.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: ktdefault.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: ktfr_entry.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: ktremove.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab: read_servi.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_close.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_endget.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_g_ent.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_g_name.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_next.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_ops.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_resolv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_ssget.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/keytab/srvtab: kts_util.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: addr_comp.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: addr_order.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: addr_srch.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: appdefault.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: auth_con.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: bld_pr_ext.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: bld_princ.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: chk_trans.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: chpw.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: conv_princ.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_addrs.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_athctr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_auth.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_cksum.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_creds.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_data.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_princ.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: copy_tick.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: cp_key_cnt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: decode_kdc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: decrypt_tk.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: deltat.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: enc_helper.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: encode_kdc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: encrypt_tk.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: free_rtree.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: fwd_tgt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: gc_frm_kdc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: gc_via_tkt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: gen_seqnum.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: gen_subkey.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: get_creds.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: get_in_tkt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: gic_keytab.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: gic_opt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: gic_pwd.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: in_tkt_ktb.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: in_tkt_pwd.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: in_tkt_sky.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: init_ctx.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: kdc_rep_dc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: kfree.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: mk_cred.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: mk_error.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: mk_priv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: mk_rep.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: mk_req.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: mk_req_ext.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: mk_safe.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: parse.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: pr_to_salt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: preauth.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: preauth2.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: princ_comp.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: rd_cred.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: rd_error.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: rd_priv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: rd_rep.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: rd_req.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: rd_req_dec.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: rd_safe.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: recvauth.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: send_tgs.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: sendauth.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_actx.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_adata.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_addr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_auth.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_cksum.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_ctx.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_eblk.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_key.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: ser_princ.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: serialize.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: set_realm.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: srv_rcache.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: str_conv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: tgtname.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: unparse.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: valid_times.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: vfy_increds.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: vic_opt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/krb: walk_rtree.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: an_to_ln.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: c_ustime.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: ccdefname.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: changepw.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: def_realm.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: free_hstrl.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: free_krbhs.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: full_ipadr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: gen_port.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: gen_rname.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: genaddrs.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: get_krbhst.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: gmt_mktime.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: hostaddr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: hst_realm.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: init_os_ctx.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: krbfileio.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: ktdefname.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: kuserok.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: localaddr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: locate_kdc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: lock_file.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: mk_faddr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: net_read.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: net_write.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: osconfig.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: port2ip.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: prompter.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: promptusr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: read_msg.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: read_pwd.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: realm_dom.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: realm_iter.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: sendto_kdc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: sn2princ.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: timeofday.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: toffset.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: unlck_file.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: ustime.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/os: write_msg.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/posix: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/posix: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/posix: daemon.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/posix: setenv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: rc_base.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: rc_conv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: rc_dfl.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: rc_io.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: rcdef.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5/rcache: ser_rc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5util: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5util: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5util: compat_recv.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5util: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5util: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5util: libkrb5util.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/krb5util: seteuid.o
Only in krb5-1.2.2.nocompile.fixed/src/lib: libdes425.a
Only in krb5-1.2.2.nocompile.fixed/src/lib: libgssapi_krb5.a
Only in krb5-1.2.2.nocompile.fixed/src/lib: libgssrpc.a
Only in krb5-1.2.2.nocompile.fixed/src/lib: libkadm5clnt.a
Only in krb5-1.2.2.nocompile.fixed/src/lib: libkadm5srv.a
Only in krb5-1.2.2.nocompile.fixed/src/lib: libkdb5.a
Only in krb5-1.2.2.nocompile.fixed/src/lib: libkrb5util.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: OBJS.ST
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: auth_any.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: auth_gssapi.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: auth_gssapi_misc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: auth_none.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: auth_unix.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: authunix_prot.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: bindresvport.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: clnt_generic.o
diff -rc krb5-1.2.2/src/lib/rpc/clnt_perror.c krb5-1.2.2.nocompile.fixed/src/lib/rpc/clnt_perror.c
*** krb5-1.2.2/src/lib/rpc/clnt_perror.c	Wed Feb 28 15:07:55 2001
--- krb5-1.2.2.nocompile.fixed/src/lib/rpc/clnt_perror.c	Wed May  9 12:56:51 2001
***************
*** 41,46 ****
--- 41,47 ----
  #include <string.h>
  #include <errno.h>
  
+ 
  #include <gssrpc/types.h>
  #include <gssrpc/auth.h>
  #include <gssrpc/clnt.h>
***************
*** 51,57 ****
  static char *auth_errmsg();
  
  
- 
  static char *buf;
  
  static char *
--- 52,57 ----
***************
*** 108,116 ****
  	case RPC_CANTSEND:
  	case RPC_CANTRECV:
  		/* 10 for the string */
! 		if(str - bufstart + 10 + strlen(sys_errlist[e.re_errno]) < BUFSIZ)
  		    (void) sprintf(str, "; errno = %s",
! 				   sys_errlist[e.re_errno]); 
  		str += strlen(str);
  		break;
  
--- 108,116 ----
  	case RPC_CANTSEND:
  	case RPC_CANTRECV:
  		/* 10 for the string */
! 		if(str - bufstart + 10 + strlen(_sys_errlist[e.re_errno]) < BUFSIZ)
  		    (void) sprintf(str, "; errno = %s",
! 				   _sys_errlist[e.re_errno]); 
  		str += strlen(str);
  		break;
  
***************
*** 270,278 ****
  	case RPC_SYSTEMERROR:
  		(void) strncat(str, " - ", BUFSIZ - 1 - strlen(str));
  		if (rpc_createerr.cf_error.re_errno > 0
! 		    && rpc_createerr.cf_error.re_errno < sys_nerr)
  			(void) strncat(str,
! 			    sys_errlist[rpc_createerr.cf_error.re_errno],
  			    BUFSIZ - 1 - strlen(str));
  		else
  			(void) sprintf(&str[strlen(str)], "Error %d",
--- 270,278 ----
  	case RPC_SYSTEMERROR:
  		(void) strncat(str, " - ", BUFSIZ - 1 - strlen(str));
  		if (rpc_createerr.cf_error.re_errno > 0
! 		    && rpc_createerr.cf_error.re_errno < _sys_nerr)
  			(void) strncat(str,
! 			    _sys_errlist[rpc_createerr.cf_error.re_errno],
  			    BUFSIZ - 1 - strlen(str));
  		else
  			(void) sprintf(&str[strlen(str)], "Error %d",
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: clnt_perror.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: clnt_raw.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: clnt_simple.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: clnt_tcp.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: clnt_udp.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: get_myaddress.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: getrpcport.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: libgssrpc.a
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: pmap_clnt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: pmap_getmaps.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: pmap_getport.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: pmap_prot.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: pmap_prot2.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: pmap_rmt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: rpc_callmsg.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: rpc_commondata.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: rpc_dtablesize.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: rpc_prot.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_auth.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_auth_any.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_auth_gssapi.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_auth_unix.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_raw.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_run.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_simple.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_tcp.o
diff -rc krb5-1.2.2/src/lib/rpc/svc_udp.c krb5-1.2.2.nocompile.fixed/src/lib/rpc/svc_udp.c
*** krb5-1.2.2/src/lib/rpc/svc_udp.c	Wed Feb 28 15:07:55 2001
--- krb5-1.2.2.nocompile.fixed/src/lib/rpc/svc_udp.c	Wed May  9 12:56:56 2001
***************
*** 193,205 ****
  	dummy.msg_iovlen = 1;
  	dummy.msg_namelen = xprt->xp_laddrlen = sizeof(struct sockaddr_in);
  	dummy.msg_name = (char *) &xprt->xp_laddr;
! 	rlen = recvmsg(xprt->xp_sock, &dummy, MSG_PEEK);
! 	if (rlen == -1) {
! 	     if (errno == EINTR)
! 		  goto again;
! 	     else
! 		  return (FALSE);
! 	}
  	
  	xprt->xp_addrlen = sizeof(struct sockaddr_in);
  	rlen = recvfrom(xprt->xp_sock, rpc_buffer(xprt), (int) su->su_iosz,
--- 193,205 ----
  	dummy.msg_iovlen = 1;
  	dummy.msg_namelen = xprt->xp_laddrlen = sizeof(struct sockaddr_in);
  	dummy.msg_name = (char *) &xprt->xp_laddr;
! /*	rlen = recvmsg(xprt->xp_sock, &dummy, MSG_PEEK); */
!  	if (rlen == -1) {
!  	     if (errno == EINTR)
!  		  goto again;
!  	     else
!  		  return (FALSE);
!  	}
  	
  	xprt->xp_addrlen = sizeof(struct sockaddr_in);
  	rlen = recvfrom(xprt->xp_sock, rpc_buffer(xprt), (int) su->su_iosz,
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: svc_udp.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: types.h
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: types.stamp
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: client.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: client.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: config.log
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: config.status
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: rpc_test_clnt.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: rpc_test_svc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: server.exe
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc/unit-test: server.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr_alloc.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr_array.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr_float.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr_mem.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr_rec.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr_reference.o
Only in krb5-1.2.2.nocompile.fixed/src/lib/rpc: xdr_stdio.o
Only in krb5-1.2.2.nocompile.fixed/src/slave: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/slave: config.log
Only in krb5-1.2.2.nocompile.fixed/src/slave: config.status
Only in krb5-1.2.2.nocompile.fixed/src/slave: kprop.exe
Only in krb5-1.2.2.nocompile.fixed/src/slave: kprop.o
Only in krb5-1.2.2.nocompile.fixed/src/slave: kpropd.exe
Only in krb5-1.2.2.nocompile.fixed/src/slave: kpropd.o
Only in krb5-1.2.2.nocompile.fixed/src/tests: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: krb5_decode_test.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: krb5_decode_test.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: krb5_encode_test.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: krb5_encode_test.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: ktest.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: ktest_equal.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: trval.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: trval.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/asn.1: utility.o
Only in krb5-1.2.2.nocompile.fixed/src/tests: config.log
Only in krb5-1.2.2.nocompile.fixed/src/tests: config.status
Only in krb5-1.2.2.nocompile.fixed/src/tests/create: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/create: kdb5_mkdums.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/create: kdb5_mkdums.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/dejagnu: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/gssapi: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/gssapi: t_imp_name.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/gssapi: t_imp_name.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/hammer: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/hammer: kdc5_hammer.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/hammer: kdc5_hammer.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/resolve: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/resolve: resolve.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/resolve: resolve.o
Only in krb5-1.2.2.nocompile.fixed/src/tests/verify: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/tests/verify: kdb5_verify.exe
Only in krb5-1.2.2.nocompile.fixed/src/tests/verify: kdb5_verify.o
Only in krb5-1.2.2.nocompile.fixed/src/util: aix.bincmds
Only in krb5-1.2.2.nocompile.fixed/src/util/db2: Makefile
Only in krb5-1.2.2.nocompile.fixed/src/util/db2/obj: db-config.h
Only in krb5-1.2.2.nocompile.fixed/src/util/db2/obj: db.h
Only in krb5-1.2.2.nocompile.fixed/src/util/profile: prtest
Only in krb5-1.2.2.nocompile.fixed/src/util/profile: test_parse.exe
Only in krb5-1.2.2.nocompile.fixed/src/util/profile: test_profile.exe
diff -rc krb5-1.2.2/src/util/ss/help.c krb5-1.2.2.nocompile.fixed/src/util/ss/help.c
*** krb5-1.2.2/src/util/ss/help.c	Wed Feb 28 15:08:34 2001
--- krb5-1.2.2.nocompile.fixed/src/util/ss/help.c	Wed May  9 12:57:52 2001
***************
*** 11,16 ****
--- 11,17 ----
  #include <sys/wait.h>
  #include "ss_internal.h"
  #include "copyright.h"
+ #include <sys/errno.h>
  
  extern int errno;
  
diff -rc krb5-1.2.2/src/util/ss/pager.c krb5-1.2.2.nocompile.fixed/src/util/ss/pager.c
*** krb5-1.2.2/src/util/ss/pager.c	Wed Feb 28 15:08:34 2001
--- krb5-1.2.2.nocompile.fixed/src/util/ss/pager.c	Wed May  9 12:57:52 2001
***************
*** 13,18 ****
--- 13,19 ----
  #include <sys/types.h>
  #include <sys/file.h>
  #include <signal.h>
+ #include <sys/errno.h>
  
  static char MORE[] = "more";
  extern char *_ss_pager_name;
diff -rc krb5-1.2.2/src/util/ss/parse.c krb5-1.2.2.nocompile.fixed/src/util/ss/parse.c
*** krb5-1.2.2/src/util/ss/parse.c	Wed Feb 28 15:08:34 2001
--- krb5-1.2.2.nocompile.fixed/src/util/ss/parse.c	Wed May  9 12:57:53 2001
***************
*** 6,12 ****
  
  #include "ss_internal.h"
  #include "copyright.h"
! 
  
  enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
  
--- 6,12 ----
  
  #include "ss_internal.h"
  #include "copyright.h"
! #include <sys/errno.h>
  
  enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
  

END OF DIFF FILE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


-- 
Jack G. Harris
CCN-2 Unix Systems Support
Los Alamos National Laboratory
E-Mail: jackh@lanl.gov
VOX: 505-665-4036
FAX: 505-665-1002
MS: B294

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]