Index: openafs/src/WINNT/afsd/cm_conn.c
diff -c openafs/src/WINNT/afsd/cm_conn.c:1.49.2.11 openafs/src/WINNT/afsd/cm_conn.c:1.49.2.12
*** openafs/src/WINNT/afsd/cm_conn.c:1.49.2.11	Sat Feb  3 21:46:25 2007
--- openafs/src/WINNT/afsd/cm_conn.c	Sat Mar 10 10:50:07 2007
***************
*** 168,173 ****
--- 168,174 ----
      long timeUsed, timeLeft;
      long code;
      char addr[16];
+     int forcing_new = 0;
  
      osi_Log2(afsd_logp, "cm_Analyze connp 0x%p, code 0x%x",
               connp, errorCode);
***************
*** 195,204 ****
          lock_ReleaseWrite(&cm_callbackLock);
      }
  
-     /* If not allowed to retry, don't */
-     if (reqp->flags & CM_REQ_NORETRY)
-         goto out;
- 
      /* if timeout - check that it did not exceed the HardDead timeout
       * and retry */
      
--- 196,201 ----
***************
*** 487,493 ****
      else if (errorCode >= -64 && errorCode < 0) {
          /* mark server as down */
          lock_ObtainMutex(&serverp->mx);
!         serverp->flags |= CM_SERVERFLAG_DOWN;
          lock_ReleaseMutex(&serverp->mx);
  	cm_ForceNewConnections(serverp);
          if ( timeLeft > 2 )
--- 484,495 ----
      else if (errorCode >= -64 && errorCode < 0) {
          /* mark server as down */
          lock_ObtainMutex(&serverp->mx);
! 	if (reqp->flags & CM_REQ_NEW_CONN_FORCED)
! 	    serverp->flags |= CM_SERVERFLAG_DOWN;
! 	else {
! 	    reqp->flags |= CM_REQ_NEW_CONN_FORCED;
! 	    forcing_new = 1;
! 	}
          lock_ReleaseMutex(&serverp->mx);
  	cm_ForceNewConnections(serverp);
          if ( timeLeft > 2 )
***************
*** 611,617 ****
          }
      }
  
!     if (retry && dead_session)
          retry = 0;
  
    out:
--- 613,622 ----
          }
      }
  
!     /* If not allowed to retry, don't */
!     if (!forcing_new && (reqp->flags & CM_REQ_NORETRY))
! 	retry = 0;
!     else if (retry && dead_session)
          retry = 0;
  
    out:
Index: openafs/src/WINNT/afsd/cm_conn.h
diff -c openafs/src/WINNT/afsd/cm_conn.h:1.13.4.6 openafs/src/WINNT/afsd/cm_conn.h:1.13.4.7
*** openafs/src/WINNT/afsd/cm_conn.h:1.13.4.6	Sat Feb  3 21:46:25 2007
--- openafs/src/WINNT/afsd/cm_conn.h	Sat Mar 10 10:50:07 2007
***************
*** 43,48 ****
--- 43,49 ----
  
  /* flags in cm_req structure */
  #define	CM_REQ_NORETRY		0x1
+ #define CM_REQ_NEW_CONN_FORCED  0x2
  
  /*
   * Vice2 error codes
Index: openafs/src/WINNT/afsd/cm_daemon.c
diff -c openafs/src/WINNT/afsd/cm_daemon.c:1.16.4.10 openafs/src/WINNT/afsd/cm_daemon.c:1.16.4.11
*** openafs/src/WINNT/afsd/cm_daemon.c:1.16.4.10	Sun Feb  4 10:39:14 2007
--- openafs/src/WINNT/afsd/cm_daemon.c	Sat Mar 10 10:50:07 2007
***************
*** 31,37 ****
  
  /* in seconds */
  long cm_daemonCheckDownInterval  = 180;
! long cm_daemonCheckUpInterval    = 600;
  long cm_daemonCheckVolInterval   = 3600;
  long cm_daemonCheckCBInterval    = 60;
  long cm_daemonCheckLockInterval  = 60;
--- 31,37 ----
  
  /* in seconds */
  long cm_daemonCheckDownInterval  = 180;
! long cm_daemonCheckUpInterval    = 240;
  long cm_daemonCheckVolInterval   = 3600;
  long cm_daemonCheckCBInterval    = 60;
  long cm_daemonCheckLockInterval  = 60;
Index: openafs/src/WINNT/afsd/cm_server.c
diff -c openafs/src/WINNT/afsd/cm_server.c:1.25.2.3 openafs/src/WINNT/afsd/cm_server.c:1.25.2.4
*** openafs/src/WINNT/afsd/cm_server.c:1.25.2.3	Tue Jun 27 23:24:05 2006
--- openafs/src/WINNT/afsd/cm_server.c	Mon Mar 19 08:46:15 2007
***************
*** 49,55 ****
      long code;
      int wasDown = 0;
      cm_conn_t *connp;
!     struct rx_connection * callp;
      long secs;
      long usecs;
      Capabilities caps = {0, 0};
--- 49,55 ----
      long code;
      int wasDown = 0;
      cm_conn_t *connp;
!     struct rx_connection * rxconnp;
      long secs;
      long usecs;
      Capabilities caps = {0, 0};
***************
*** 93,103 ****
  	}
  	else {
  	    /* file server */
! 	    callp = cm_GetRxConn(connp);
! 	    code = RXAFS_GetCapabilities(callp, &caps);
  	    if (code == RXGEN_OPCODE)
! 		code = RXAFS_GetTime(callp, &secs, &usecs);
! 	    rx_PutConnection(callp);
  	}
  	if (wasDown)
  	    rx_SetConnDeadTime(connp->callp, ConnDeadtimeout);
--- 93,103 ----
  	}
  	else {
  	    /* file server */
! 	    rxconnp = cm_GetRxConn(connp);
! 	    code = RXAFS_GetCapabilities(rxconnp, &caps);
  	    if (code == RXGEN_OPCODE)
! 		code = RXAFS_GetTime(rxconnp, &secs, &usecs);
! 	    rx_PutConnection(rxconnp);
  	}
  	if (wasDown)
  	    rx_SetConnDeadTime(connp->callp, ConnDeadtimeout);
Index: openafs/src/WINNT/afssvrmgr/svrmgr.h
diff -c openafs/src/WINNT/afssvrmgr/svrmgr.h:1.3 openafs/src/WINNT/afssvrmgr/svrmgr.h:1.3.4.1
*** openafs/src/WINNT/afssvrmgr/svrmgr.h:1.3	Sat Nov  5 01:47:50 2005
--- openafs/src/WINNT/afssvrmgr/svrmgr.h	Sat Mar 10 09:26:19 2007
***************
*** 56,64 ****
  #define cszENDING_CLONE    TEXT(".clone")
  
  #define REGSTR_SETTINGS_BASE  HKCU
! #define REGSTR_SETTINGS_PATH  TEXT("Software\\TransarcCorporation\\AFS Server Manager")
  #define REGVAL_SETTINGS       TEXT("Settings")
! #define REGSTR_SETTINGS_PREFS TEXT("Software\\TransarcCorporation\\AFS Server Manager\\Preferences")
  #define REGSTR_SETTINGS_CELLS REGSTR_SETTINGS_PREFS
  
  
--- 56,64 ----
  #define cszENDING_CLONE    TEXT(".clone")
  
  #define REGSTR_SETTINGS_BASE  HKCU
! #define REGSTR_SETTINGS_PATH  TEXT("Software\\OpenAFS\\AFS Server Manager")
  #define REGVAL_SETTINGS       TEXT("Settings")
! #define REGSTR_SETTINGS_PREFS TEXT("Software\\OpenAFS\\AFS Server Manager\\Preferences")
  #define REGSTR_SETTINGS_CELLS REGSTR_SETTINGS_PREFS
  
  
Index: openafs/src/WINNT/afsusrmgr/TaAfsUsrMgr.h
diff -c openafs/src/WINNT/afsusrmgr/TaAfsUsrMgr.h:1.3 openafs/src/WINNT/afsusrmgr/TaAfsUsrMgr.h:1.3.4.1
*** openafs/src/WINNT/afsusrmgr/TaAfsUsrMgr.h:1.3	Sat Nov  5 01:47:52 2005
--- openafs/src/WINNT/afsusrmgr/TaAfsUsrMgr.h	Sat Mar 10 09:26:20 2007
***************
*** 47,55 ****
  #endif
  
  #define REGSTR_SETTINGS_BASE  HKCU
! #define REGSTR_SETTINGS_PATH  TEXT("Software\\TransarcCorporation\\AFS Account Manager")
  #define REGVAL_SETTINGS       TEXT("Settings")
! #define REGSTR_SETTINGS_PREFS TEXT("Software\\TransarcCorporation\\AFS Account Manager\\Preferences")
  #define REGSTR_SETTINGS_CELLS REGSTR_SETTINGS_PREFS
  
  
--- 47,55 ----
  #endif
  
  #define REGSTR_SETTINGS_BASE  HKCU
! #define REGSTR_SETTINGS_PATH  TEXT("Software\\OpenAFS\\AFS Account Manager")
  #define REGVAL_SETTINGS       TEXT("Settings")
! #define REGSTR_SETTINGS_PREFS TEXT("Software\\OpenAFS\\AFS Account Manager\\Preferences")
  #define REGSTR_SETTINGS_CELLS REGSTR_SETTINGS_PREFS
  
  
Index: openafs/src/WINNT/doc/install/Documentation/en_US/html/index.htm
diff -c openafs/src/WINNT/doc/install/Documentation/en_US/html/index.htm:1.5.4.10 openafs/src/WINNT/doc/install/Documentation/en_US/html/index.htm:1.5.4.11
*** openafs/src/WINNT/doc/install/Documentation/en_US/html/index.htm:1.5.4.10	Thu Mar  8 20:13:17 2007
--- openafs/src/WINNT/doc/install/Documentation/en_US/html/index.htm	Mon Mar 19 18:28:40 2007
***************
*** 198,204 ****
  
  <h1>OpenAFS for Windows</h1>
  
! <h2>Version 1.5.16</h2>
  
  <p class=MsoNormal><span style='mso-fareast-font-family:"MS Mincho"'>&nbsp; <o:p></o:p></span></p>
  
--- 198,204 ----
  
  <h1>OpenAFS for Windows</h1>
  
! <h2>Version 1.5.17</h2>
  
  <p class=MsoNormal><span style='mso-fareast-font-family:"MS Mincho"'>&nbsp; <o:p></o:p></span></p>
  
Index: openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/logo.htm
diff -c openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/logo.htm:1.1.6.11 openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/logo.htm:1.1.6.12
*** openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/logo.htm:1.1.6.11	Thu Mar  8 20:13:21 2007
--- openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/logo.htm	Mon Mar 19 18:28:44 2007
***************
*** 18,24 ****
  .shape {behavior:url(#default#VML);}
  </style>
  <![endif]-->
! <title>OpenAFS for Windows 1.5.16 Release Notes</title>
  <!--[if gte mso 9]><xml>
   <o:DocumentProperties>
    <o:Revision>1</o:Revision>
--- 18,24 ----
  .shape {behavior:url(#default#VML);}
  </style>
  <![endif]-->
! <title>OpenAFS for Windows 1.5.17 Release Notes</title>
  <!--[if gte mso 9]><xml>
   <o:DocumentProperties>
    <o:Revision>1</o:Revision>
Index: openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes-frames.htm
diff -c openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes-frames.htm:1.1.4.13 openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes-frames.htm:1.1.4.14
*** openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes-frames.htm:1.1.4.13	Thu Mar  8 20:13:21 2007
--- openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes-frames.htm	Mon Mar 19 18:28:44 2007
***************
*** 8,14 ****
  <meta name=Generator content="Microsoft Word 11">
  <meta name=Originator content="Microsoft Word 11">
  <link rel=File-List href="relnotes-frames_files/filelist.xml">
! <title>OpenAFS for Windows 1.5.16 Release Notes</title>
  <!--[if gte mso 9]><xml>
   <w:WordDocument>
    <w:Zoom>0</w:Zoom>
--- 8,14 ----
  <meta name=Generator content="Microsoft Word 11">
  <meta name=Originator content="Microsoft Word 11">
  <link rel=File-List href="relnotes-frames_files/filelist.xml">
! <title>OpenAFS for Windows 1.5.17 Release Notes</title>
  <!--[if gte mso 9]><xml>
   <w:WordDocument>
    <w:Zoom>0</w:Zoom>
Index: openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes.htm
diff -c openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes.htm:1.6.4.14 openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes.htm:1.6.4.15
*** openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes.htm:1.6.4.14	Thu Mar  8 20:13:21 2007
--- openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes.htm	Mon Mar 19 18:28:44 2007
***************
*** 19,25 ****
  .shape {behavior:url(#default#VML);}
  </style>
  <![endif]-->
! <title>OpenAFS for Windows 1.5.16 Release Notes</title>
  <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
   name="PostalCode"/>
  <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
--- 19,25 ----
  .shape {behavior:url(#default#VML);}
  </style>
  <![endif]-->
! <title>OpenAFS for Windows 1.5.17 Release Notes</title>
  <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
   name="PostalCode"/>
  <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
***************
*** 583,589 ****
  
  <div class=Section1>
  
! <p class=MsoTitle>OpenAFS for Windows 1.5.16<br>
  Release Notes</p>
  
  <p class=MsoBodyText>The Andrew File System (AFS) is a location-independent
--- 583,589 ----
  
  <div class=Section1>
  
! <p class=MsoTitle>OpenAFS for Windows 1.5.17<br>
  Release Notes</p>
  
  <p class=MsoBodyText>The Andrew File System (AFS) is a location-independent
Index: openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/toc.htm
diff -c openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/toc.htm:1.2.6.9 openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/toc.htm:1.2.6.10
*** openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/toc.htm:1.2.6.9	Thu Mar  8 20:13:21 2007
--- openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/toc.htm	Mon Mar 19 18:28:44 2007
***************
*** 10,16 ****
  <meta name=Originator content="Microsoft Word 11">
  <base target=body>
  <link rel=File-List href="toc_files/filelist.xml">
! <title>OpenAFS for Windows 1.5.16 Table of Contents</title>
  <!--[if gte mso 9]><xml>
   <o:DocumentProperties>
    <o:Author>Jeffrey Altman</o:Author>
--- 10,16 ----
  <meta name=Originator content="Microsoft Word 11">
  <base target=body>
  <link rel=File-List href="toc_files/filelist.xml">
! <title>OpenAFS for Windows 1.5.17 Table of Contents</title>
  <!--[if gte mso 9]><xml>
   <o:DocumentProperties>
    <o:Author>Jeffrey Altman</o:Author>
Index: openafs/src/WINNT/doc/install/Documentation/en_US/html/ReleaseNotes/relnotes_files/image002.jpg
Index: openafs/src/WINNT/install/NSIS/CellServDB
diff -c openafs/src/WINNT/install/NSIS/CellServDB:1.6.4.1 openafs/src/WINNT/install/NSIS/CellServDB:1.6.4.2
*** openafs/src/WINNT/install/NSIS/CellServDB:1.6.4.1	Sun Oct  8 23:15:07 2006
--- openafs/src/WINNT/install/NSIS/CellServDB	Fri Mar  9 23:55:08 2007
***************
*** 1,6 ****
! >grand.central.org      #GCO Public CellServDB 08 Oct 2006
! 18.7.14.88                      #grand-opening.mit.edu
! 128.2.191.224                   #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
--- 1,6 ----
! >grand.central.org      #GCO Public CellServDB 09 Mar 2007
! 18.92.0.108                     #grand-opening.mit.edu
! 128.2.203.61                    #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
***************
*** 14,30 ****
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute for Theoretical Physics, TU Graz, Austria
! 129.27.157.6                    #fubphsv2.tu-graz.ac.at
! 129.27.161.7                    #faepsv01.tu-graz.ac.at
! 129.27.161.15                   #faepsv02.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.206.77                  #pcamsf2.cern.ch
! 137.138.206.123                 #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
--- 14,30 ----
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute of Theoretical and Computational Physics, TU Graz, Aus
! 129.27.161.7                    #faepafs1.tu-graz.ac.at
! 129.27.161.15                   #faepafs2.tu-graz.ac.at
! 129.27.161.114                  #faepafs3.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.188.185                 #ams.cern.ch
! 137.138.199.58                  #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
***************
*** 176,181 ****
--- 176,183 ----
  >sbp.ri.cmu.edu         #Carnegie Mellon University - Sensor Based Planning Lab
  128.2.179.12                    #nihao.sbp.ri.cmu.edu
  128.2.179.113                   #youtheman.sbp.ri.cmu.edu
+ >cnf.cornell.edu        #Cornell Nanoscale Science and Technology Facility
+ 128.253.198.9                   #hole.cnf.cornell.edu
  >msc.cornell.edu        #Cornell University Materials Science Center
  128.84.231.242                  #miranda.ccmr.cornell.edu
  128.84.241.35                   #co.ccmr.cornell.edu
***************
*** 203,210 ****
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.7.15.89                      #rattle.mit.edu.
! 18.7.15.93                      #hum.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
--- 205,212 ----
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.92.1.219                     #click.mit.edu.
! 18.92.1.220                     #whirr.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
***************
*** 275,284 ****
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comm. and Tech. Services, California U.S.A
! 128.114.129.14                  #elan.ucsc.edu
! 128.114.129.15                  #ichabod.ucsc.edu
! 128.114.129.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
--- 277,286 ----
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comp and Tech Services, California U.S.A
! 128.114.123.14                  #elan.ucsc.edu
! 128.114.123.15                  #ichabod.ucsc.edu
! 128.114.123.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
***************
*** 313,320 ****
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public Health
! 141.211.50.41                   #afssph0.sph.umich.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
--- 315,328 ----
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public  Health
! 141.211.51.137                  #afssph7.sph.umich.edu
! 141.211.51.139                  #afssph0.sph.umich.edu
! 141.211.51.142                  #afssph6.sph.umich.edu
! >isis.unc.edu           #Univ. of NC at Chapel Hill - ITS
! 152.2.1.5                       #db0.isis.unc.edu
! 152.2.1.6                       #db1.isis.unc.edu
! 152.2.1.7                       #db2.isis.unc.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
***************
*** 324,331 ****
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.99.222.9                    #lenny.eng.utah.edu
! 155.99.222.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
--- 332,339 ----
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.98.111.9                    #lenny.eng.utah.edu
! 155.98.111.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
***************
*** 477,484 ****
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
- 4.36.43.102                     #dol-guldur.1ts.org
  69.25.196.51                    #pancake.1ts.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
--- 485,493 ----
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
  69.25.196.51                    #pancake.1ts.org
+ >acm-csuf.org           #California State Univerisity Fullerton ACM
+ 137.151.29.193                  #afs1.acm-csuf.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
***************
*** 510,515 ****
--- 519,525 ----
  130.237.24.104                  #afs2.hallf.kth.se
  >isk.kth.se             #Royal Institute of Technology, ISK
  130.237.202.3                   #afsdb1.isk.kth.se
+ 130.237.209.9                   #afsdb3.isk.kth.se
  130.237.209.39                  #ezri.isk.kth.se
  >it.kth.se              #Royal Institute of Technology, IT
  130.237.212.15                  #ptah.it.kth.se
Index: openafs/src/WINNT/install/wix/CellServDB
diff -c openafs/src/WINNT/install/wix/CellServDB:1.6.4.1 openafs/src/WINNT/install/wix/CellServDB:1.6.4.2
*** openafs/src/WINNT/install/wix/CellServDB:1.6.4.1	Sun Oct  8 23:15:12 2006
--- openafs/src/WINNT/install/wix/CellServDB	Fri Mar  9 23:55:11 2007
***************
*** 1,6 ****
! >grand.central.org      #GCO Public CellServDB 08 Oct 2006
! 18.7.14.88                      #grand-opening.mit.edu
! 128.2.191.224                   #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
--- 1,6 ----
! >grand.central.org      #GCO Public CellServDB 09 Mar 2007
! 18.92.0.108                     #grand-opening.mit.edu
! 128.2.203.61                    #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
***************
*** 14,30 ****
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute for Theoretical Physics, TU Graz, Austria
! 129.27.157.6                    #fubphsv2.tu-graz.ac.at
! 129.27.161.7                    #faepsv01.tu-graz.ac.at
! 129.27.161.15                   #faepsv02.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.206.77                  #pcamsf2.cern.ch
! 137.138.206.123                 #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
--- 14,30 ----
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute of Theoretical and Computational Physics, TU Graz, Aus
! 129.27.161.7                    #faepafs1.tu-graz.ac.at
! 129.27.161.15                   #faepafs2.tu-graz.ac.at
! 129.27.161.114                  #faepafs3.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.188.185                 #ams.cern.ch
! 137.138.199.58                  #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
***************
*** 176,181 ****
--- 176,183 ----
  >sbp.ri.cmu.edu         #Carnegie Mellon University - Sensor Based Planning Lab
  128.2.179.12                    #nihao.sbp.ri.cmu.edu
  128.2.179.113                   #youtheman.sbp.ri.cmu.edu
+ >cnf.cornell.edu        #Cornell Nanoscale Science and Technology Facility
+ 128.253.198.9                   #hole.cnf.cornell.edu
  >msc.cornell.edu        #Cornell University Materials Science Center
  128.84.231.242                  #miranda.ccmr.cornell.edu
  128.84.241.35                   #co.ccmr.cornell.edu
***************
*** 203,210 ****
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.7.15.89                      #rattle.mit.edu.
! 18.7.15.93                      #hum.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
--- 205,212 ----
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.92.1.219                     #click.mit.edu.
! 18.92.1.220                     #whirr.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
***************
*** 275,284 ****
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comm. and Tech. Services, California U.S.A
! 128.114.129.14                  #elan.ucsc.edu
! 128.114.129.15                  #ichabod.ucsc.edu
! 128.114.129.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
--- 277,286 ----
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comp and Tech Services, California U.S.A
! 128.114.123.14                  #elan.ucsc.edu
! 128.114.123.15                  #ichabod.ucsc.edu
! 128.114.123.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
***************
*** 313,320 ****
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public Health
! 141.211.50.41                   #afssph0.sph.umich.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
--- 315,328 ----
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public  Health
! 141.211.51.137                  #afssph7.sph.umich.edu
! 141.211.51.139                  #afssph0.sph.umich.edu
! 141.211.51.142                  #afssph6.sph.umich.edu
! >isis.unc.edu           #Univ. of NC at Chapel Hill - ITS
! 152.2.1.5                       #db0.isis.unc.edu
! 152.2.1.6                       #db1.isis.unc.edu
! 152.2.1.7                       #db2.isis.unc.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
***************
*** 324,331 ****
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.99.222.9                    #lenny.eng.utah.edu
! 155.99.222.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
--- 332,339 ----
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.98.111.9                    #lenny.eng.utah.edu
! 155.98.111.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
***************
*** 477,484 ****
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
- 4.36.43.102                     #dol-guldur.1ts.org
  69.25.196.51                    #pancake.1ts.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
--- 485,493 ----
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
  69.25.196.51                    #pancake.1ts.org
+ >acm-csuf.org           #California State Univerisity Fullerton ACM
+ 137.151.29.193                  #afs1.acm-csuf.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
***************
*** 510,515 ****
--- 519,525 ----
  130.237.24.104                  #afs2.hallf.kth.se
  >isk.kth.se             #Royal Institute of Technology, ISK
  130.237.202.3                   #afsdb1.isk.kth.se
+ 130.237.209.9                   #afsdb3.isk.kth.se
  130.237.209.39                  #ezri.isk.kth.se
  >it.kth.se              #Royal Institute of Technology, IT
  130.237.212.15                  #ptah.it.kth.se
Index: openafs/src/afs/afs_cell.c
diff -c openafs/src/afs/afs_cell.c:1.34.4.3 openafs/src/afs/afs_cell.c:1.34.4.4
*** openafs/src/afs/afs_cell.c:1.34.4.3	Mon Jul 31 17:27:38 2006
--- openafs/src/afs/afs_cell.c	Mon Mar 19 20:13:34 2007
***************
*** 14,20 ****
  #include "afs/param.h"
  
  RCSID
!     ("$Header: /cvs/openafs/src/afs/afs_cell.c,v 1.34.4.3 2006/07/31 21:27:38 shadow Exp $");
  
  #include "afs/stds.h"
  #include "afs/sysincludes.h"	/* Standard vendor system headers */
--- 14,20 ----
  #include "afs/param.h"
  
  RCSID
!     ("$Header: /cvs/openafs/src/afs/afs_cell.c,v 1.34.4.4 2007/03/20 01:13:34 shadow Exp $");
  
  #include "afs/stds.h"
  #include "afs/sysincludes.h"	/* Standard vendor system headers */
***************
*** 751,758 ****
  	AFS_MD5_String(tc->cellHandle, tc->cellName, strlen(tc->cellName));
  	RWLOCK_INIT(&tc->lock, "cell lock");
  	newc = 1;
! 	if (afs_thiscell && !strcmp(acellName, afs_thiscell))
! 	    aflags &= ~CNoSUID;
      }
      ObtainWriteLock(&tc->lock, 688);
  
--- 751,757 ----
  	AFS_MD5_String(tc->cellHandle, tc->cellName, strlen(tc->cellName));
  	RWLOCK_INIT(&tc->lock, "cell lock");
  	newc = 1;
! 	aflags |= CNoSUID;
      }
      ObtainWriteLock(&tc->lock, 688);
  
Index: openafs/src/afs/VNOPS/afs_vnop_flock.c
diff -c openafs/src/afs/VNOPS/afs_vnop_flock.c:1.29.2.4 openafs/src/afs/VNOPS/afs_vnop_flock.c:1.29.2.5
*** openafs/src/afs/VNOPS/afs_vnop_flock.c:1.29.2.4	Wed Feb 14 19:35:04 2007
--- openafs/src/afs/VNOPS/afs_vnop_flock.c	Sat Mar 10 11:03:21 2007
***************
*** 16,22 ****
  #include "afs/param.h"
  
  RCSID
!     ("$Header: /cvs/openafs/src/afs/VNOPS/afs_vnop_flock.c,v 1.29.2.4 2007/02/15 00:35:04 shadow Exp $");
  
  #include "afs/sysincludes.h"	/* Standard vendor system headers */
  #include "afsincludes.h"	/* Afs-based standard headers */
--- 16,22 ----
  #include "afs/param.h"
  
  RCSID
!     ("$Header: /cvs/openafs/src/afs/VNOPS/afs_vnop_flock.c,v 1.29.2.5 2007/03/10 16:03:21 shadow Exp $");
  
  #include "afs/sysincludes.h"	/* Standard vendor system headers */
  #include "afsincludes.h"	/* Afs-based standard headers */
***************
*** 26,34 ****
  #include "afs/afs_osidnlc.h"
  #include "afs/unified_afs.h"
  
! #ifndef OFFSET_MAX
! #define OFFSET_MAX 0x7fffffffffffffff
! #endif
  
  /* Static prototypes */
  static int HandleGetLock(register struct vcache *avc,
--- 26,34 ----
  #include "afs/afs_osidnlc.h"
  #include "afs/unified_afs.h"
  
! 
! 
! 
  
  /* Static prototypes */
  static int HandleGetLock(register struct vcache *avc,
***************
*** 553,559 ****
  #endif
      /* Java VMs ask for l_len=(long)-1 regardless of OS/CPU; bottom 32 bits
       * sometimes get masked off by OS */
!     if (af->l_len == OFFSET_MAX-1)
  	af->l_len = 0;
      /* next line makes byte range locks always succeed,
       * even when they should block */
--- 553,559 ----
  #endif
      /* Java VMs ask for l_len=(long)-1 regardless of OS/CPU; bottom 32 bits
       * sometimes get masked off by OS */
!     if ((sizeof(af->l_len) == 8) && (af->l_len == 0x7ffffffffffffffe))
  	af->l_len = 0;
      /* next line makes byte range locks always succeed,
       * even when they should block */
Index: openafs/src/config/NTMakefile.amd64_w2k
diff -c openafs/src/config/NTMakefile.amd64_w2k:1.24.2.19 openafs/src/config/NTMakefile.amd64_w2k:1.24.2.20
*** openafs/src/config/NTMakefile.amd64_w2k:1.24.2.19	Thu Mar  8 19:46:12 2007
--- openafs/src/config/NTMakefile.amd64_w2k	Mon Mar 19 18:25:27 2007
***************
*** 84,90 ****
  #define used in WinNT/2000 installation and program version display
  AFSPRODUCT_VER_MAJOR=1
  AFSPRODUCT_VER_MINOR=5
! AFSPRODUCT_VER_PATCH=1600
  AFSPRODUCT_VER_BUILD=0
  
  AFSPRODUCT_VERSION=$(AFSPRODUCT_VER_MAJOR).$(AFSPRODUCT_VER_MINOR).$(AFSPRODUCT_VER_PATCH)
--- 84,90 ----
  #define used in WinNT/2000 installation and program version display
  AFSPRODUCT_VER_MAJOR=1
  AFSPRODUCT_VER_MINOR=5
! AFSPRODUCT_VER_PATCH=1700
  AFSPRODUCT_VER_BUILD=0
  
  AFSPRODUCT_VERSION=$(AFSPRODUCT_VER_MAJOR).$(AFSPRODUCT_VER_MINOR).$(AFSPRODUCT_VER_PATCH)
Index: openafs/src/config/NTMakefile.i386_nt40
diff -c openafs/src/config/NTMakefile.i386_nt40:1.84.2.19 openafs/src/config/NTMakefile.i386_nt40:1.84.2.20
*** openafs/src/config/NTMakefile.i386_nt40:1.84.2.19	Thu Mar  8 19:46:12 2007
--- openafs/src/config/NTMakefile.i386_nt40	Mon Mar 19 18:25:27 2007
***************
*** 84,90 ****
  #define used in WinNT/2000 installation and program version display
  AFSPRODUCT_VER_MAJOR=1
  AFSPRODUCT_VER_MINOR=5
! AFSPRODUCT_VER_PATCH=1600
  AFSPRODUCT_VER_BUILD=0
  
  AFSPRODUCT_VERSION=$(AFSPRODUCT_VER_MAJOR).$(AFSPRODUCT_VER_MINOR).$(AFSPRODUCT_VER_PATCH)
--- 84,90 ----
  #define used in WinNT/2000 installation and program version display
  AFSPRODUCT_VER_MAJOR=1
  AFSPRODUCT_VER_MINOR=5
! AFSPRODUCT_VER_PATCH=1700
  AFSPRODUCT_VER_BUILD=0
  
  AFSPRODUCT_VERSION=$(AFSPRODUCT_VER_MAJOR).$(AFSPRODUCT_VER_MINOR).$(AFSPRODUCT_VER_PATCH)
Index: openafs/src/config/NTMakefile.i386_w2k
diff -c openafs/src/config/NTMakefile.i386_w2k:1.23.2.19 openafs/src/config/NTMakefile.i386_w2k:1.23.2.20
*** openafs/src/config/NTMakefile.i386_w2k:1.23.2.19	Thu Mar  8 19:46:12 2007
--- openafs/src/config/NTMakefile.i386_w2k	Mon Mar 19 18:25:27 2007
***************
*** 84,90 ****
  #define used in WinNT/2000 installation and program version display
  AFSPRODUCT_VER_MAJOR=1
  AFSPRODUCT_VER_MINOR=5
! AFSPRODUCT_VER_PATCH=1600
  AFSPRODUCT_VER_BUILD=0
  
  AFSPRODUCT_VERSION=$(AFSPRODUCT_VER_MAJOR).$(AFSPRODUCT_VER_MINOR).$(AFSPRODUCT_VER_PATCH)
--- 84,90 ----
  #define used in WinNT/2000 installation and program version display
  AFSPRODUCT_VER_MAJOR=1
  AFSPRODUCT_VER_MINOR=5
! AFSPRODUCT_VER_PATCH=1700
  AFSPRODUCT_VER_BUILD=0
  
  AFSPRODUCT_VERSION=$(AFSPRODUCT_VER_MAJOR).$(AFSPRODUCT_VER_MINOR).$(AFSPRODUCT_VER_PATCH)
Index: openafs/src/libafs/afs.ppc_darwin_70.plist.in
diff -c openafs/src/libafs/afs.ppc_darwin_70.plist.in:1.2.10.12 openafs/src/libafs/afs.ppc_darwin_70.plist.in:1.2.10.13
*** openafs/src/libafs/afs.ppc_darwin_70.plist.in:1.2.10.12	Thu Mar  8 19:46:14 2007
--- openafs/src/libafs/afs.ppc_darwin_70.plist.in	Mon Mar 19 20:30:29 2007
***************
*** 15,25 ****
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.16</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.16</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kernel.bsd</key>
--- 15,25 ----
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.17</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.17</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kernel.bsd</key>
Index: openafs/src/libafs/afs.ppc_darwin_80.plist.in
diff -c openafs/src/libafs/afs.ppc_darwin_80.plist.in:1.2.4.12 openafs/src/libafs/afs.ppc_darwin_80.plist.in:1.2.4.13
*** openafs/src/libafs/afs.ppc_darwin_80.plist.in:1.2.4.12	Thu Mar  8 19:46:14 2007
--- openafs/src/libafs/afs.ppc_darwin_80.plist.in	Mon Mar 19 20:30:29 2007
***************
*** 15,25 ****
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.16</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.16</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
--- 15,25 ----
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.17</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.17</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
Index: openafs/src/libafs/afs.ppc_darwin_90.plist.in
diff -c openafs/src/libafs/afs.ppc_darwin_90.plist.in:1.1.6.12 openafs/src/libafs/afs.ppc_darwin_90.plist.in:1.1.6.13
*** openafs/src/libafs/afs.ppc_darwin_90.plist.in:1.1.6.12	Thu Mar  8 19:46:14 2007
--- openafs/src/libafs/afs.ppc_darwin_90.plist.in	Mon Mar 19 20:30:29 2007
***************
*** 15,25 ****
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.16</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.16</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
--- 15,25 ----
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.17</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.17</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
Index: openafs/src/libafs/afs.x86_darwin_80.plist.in
diff -c openafs/src/libafs/afs.x86_darwin_80.plist.in:1.1.6.12 openafs/src/libafs/afs.x86_darwin_80.plist.in:1.1.6.13
*** openafs/src/libafs/afs.x86_darwin_80.plist.in:1.1.6.12	Thu Mar  8 19:46:14 2007
--- openafs/src/libafs/afs.x86_darwin_80.plist.in	Mon Mar 19 20:30:29 2007
***************
*** 15,25 ****
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.16</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.16</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
--- 15,25 ----
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.17</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.17</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
Index: openafs/src/libafs/afs.x86_darwin_90.plist.in
diff -c openafs/src/libafs/afs.x86_darwin_90.plist.in:1.1.6.12 openafs/src/libafs/afs.x86_darwin_90.plist.in:1.1.6.13
*** openafs/src/libafs/afs.x86_darwin_90.plist.in:1.1.6.12	Thu Mar  8 19:46:14 2007
--- openafs/src/libafs/afs.x86_darwin_90.plist.in	Mon Mar 19 20:30:29 2007
***************
*** 15,25 ****
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.16</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.16</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
--- 15,25 ----
  	<key>CFBundlePackageType</key>
  	<string>KEXT</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.17</string>
  	<key>CFBundleSignature</key>
  	<string>????</string>
  	<key>CFBundleVersion</key>
! 	<string>1.5.17</string>
  	<key>OSBundleLibraries</key>
  	<dict>
  		<key>com.apple.kpi.bsd</key>
Index: openafs/src/packaging/HP-UX/files/usr/vice/etc/CellServDB
diff -c openafs/src/packaging/HP-UX/files/usr/vice/etc/CellServDB:1.3.4.1 openafs/src/packaging/HP-UX/files/usr/vice/etc/CellServDB:1.3.4.2
*** openafs/src/packaging/HP-UX/files/usr/vice/etc/CellServDB:1.3.4.1	Sun Oct  8 23:15:13 2006
--- openafs/src/packaging/HP-UX/files/usr/vice/etc/CellServDB	Fri Mar  9 23:55:12 2007
***************
*** 1,6 ****
! >grand.central.org      #GCO Public CellServDB 08 Oct 2006
! 18.7.14.88                      #grand-opening.mit.edu
! 128.2.191.224                   #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
--- 1,6 ----
! >grand.central.org      #GCO Public CellServDB 09 Mar 2007
! 18.92.0.108                     #grand-opening.mit.edu
! 128.2.203.61                    #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
***************
*** 14,30 ****
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute for Theoretical Physics, TU Graz, Austria
! 129.27.157.6                    #fubphsv2.tu-graz.ac.at
! 129.27.161.7                    #faepsv01.tu-graz.ac.at
! 129.27.161.15                   #faepsv02.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.206.77                  #pcamsf2.cern.ch
! 137.138.206.123                 #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
--- 14,30 ----
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute of Theoretical and Computational Physics, TU Graz, Aus
! 129.27.161.7                    #faepafs1.tu-graz.ac.at
! 129.27.161.15                   #faepafs2.tu-graz.ac.at
! 129.27.161.114                  #faepafs3.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.188.185                 #ams.cern.ch
! 137.138.199.58                  #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
***************
*** 176,181 ****
--- 176,183 ----
  >sbp.ri.cmu.edu         #Carnegie Mellon University - Sensor Based Planning Lab
  128.2.179.12                    #nihao.sbp.ri.cmu.edu
  128.2.179.113                   #youtheman.sbp.ri.cmu.edu
+ >cnf.cornell.edu        #Cornell Nanoscale Science and Technology Facility
+ 128.253.198.9                   #hole.cnf.cornell.edu
  >msc.cornell.edu        #Cornell University Materials Science Center
  128.84.231.242                  #miranda.ccmr.cornell.edu
  128.84.241.35                   #co.ccmr.cornell.edu
***************
*** 203,210 ****
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.7.15.89                      #rattle.mit.edu.
! 18.7.15.93                      #hum.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
--- 205,212 ----
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.92.1.219                     #click.mit.edu.
! 18.92.1.220                     #whirr.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
***************
*** 275,284 ****
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comm. and Tech. Services, California U.S.A
! 128.114.129.14                  #elan.ucsc.edu
! 128.114.129.15                  #ichabod.ucsc.edu
! 128.114.129.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
--- 277,286 ----
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comp and Tech Services, California U.S.A
! 128.114.123.14                  #elan.ucsc.edu
! 128.114.123.15                  #ichabod.ucsc.edu
! 128.114.123.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
***************
*** 313,320 ****
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public Health
! 141.211.50.41                   #afssph0.sph.umich.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
--- 315,328 ----
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public  Health
! 141.211.51.137                  #afssph7.sph.umich.edu
! 141.211.51.139                  #afssph0.sph.umich.edu
! 141.211.51.142                  #afssph6.sph.umich.edu
! >isis.unc.edu           #Univ. of NC at Chapel Hill - ITS
! 152.2.1.5                       #db0.isis.unc.edu
! 152.2.1.6                       #db1.isis.unc.edu
! 152.2.1.7                       #db2.isis.unc.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
***************
*** 324,331 ****
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.99.222.9                    #lenny.eng.utah.edu
! 155.99.222.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
--- 332,339 ----
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.98.111.9                    #lenny.eng.utah.edu
! 155.98.111.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
***************
*** 477,484 ****
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
- 4.36.43.102                     #dol-guldur.1ts.org
  69.25.196.51                    #pancake.1ts.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
--- 485,493 ----
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
  69.25.196.51                    #pancake.1ts.org
+ >acm-csuf.org           #California State Univerisity Fullerton ACM
+ 137.151.29.193                  #afs1.acm-csuf.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
***************
*** 510,515 ****
--- 519,525 ----
  130.237.24.104                  #afs2.hallf.kth.se
  >isk.kth.se             #Royal Institute of Technology, ISK
  130.237.202.3                   #afsdb1.isk.kth.se
+ 130.237.209.9                   #afsdb3.isk.kth.se
  130.237.209.39                  #ezri.isk.kth.se
  >it.kth.se              #Royal Institute of Technology, IT
  130.237.212.15                  #ptah.it.kth.se
Index: openafs/src/packaging/MacOS/CellServDB
diff -c openafs/src/packaging/MacOS/CellServDB:1.3.4.1 openafs/src/packaging/MacOS/CellServDB:1.3.4.2
*** openafs/src/packaging/MacOS/CellServDB:1.3.4.1	Sun Oct  8 23:15:14 2006
--- openafs/src/packaging/MacOS/CellServDB	Fri Mar  9 23:55:12 2007
***************
*** 1,6 ****
! >grand.central.org      #GCO Public CellServDB 08 Oct 2006
! 18.7.14.88                      #grand-opening.mit.edu
! 128.2.191.224                   #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
--- 1,6 ----
! >grand.central.org      #GCO Public CellServDB 09 Mar 2007
! 18.92.0.108                     #grand-opening.mit.edu
! 128.2.203.61                    #penn.central.org
  130.237.48.87                   #andrew.e.kth.se
  >wu-wien.ac.at          #University of Economics, Vienna, Austria
  137.208.3.33                    #goya.wu-wien.ac.at
***************
*** 14,30 ****
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute for Theoretical Physics, TU Graz, Austria
! 129.27.157.6                    #fubphsv2.tu-graz.ac.at
! 129.27.161.7                    #faepsv01.tu-graz.ac.at
! 129.27.161.15                   #faepsv02.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.206.77                  #pcamsf2.cern.ch
! 137.138.206.123                 #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
--- 14,30 ----
  129.27.224.133                  #phobos.cgv.tugraz.at
  129.27.224.134                  #deimos.cgv.tugraz.at
  129.27.224.210                  #trinculo.cgv.tugraz.at
! >itp.tugraz.at          #Institute of Theoretical and Computational Physics, TU Graz, Aus
! 129.27.161.7                    #faepafs1.tu-graz.ac.at
! 129.27.161.15                   #faepafs2.tu-graz.ac.at
! 129.27.161.114                  #faepafs3.tu-graz.ac.at
  >cern.ch                #European Laboratory for Particle Physics, Geneva
  137.138.128.148                 #afsdb1.cern.ch
  137.138.246.50                  #afsdb3.cern.ch
  137.138.246.51                  #afsdb2.cern.ch
  >ams.cern.ch            #AMS Experiment
! 137.138.188.185                 #ams.cern.ch
! 137.138.199.58                  #pcamsf4.cern.ch
  >epfl.ch                #Swiss Federal Institute of Technology at Lausanne
  128.178.109.111                 #kd1.epfl.ch
  128.178.109.112                 #kd2.epfl.ch
***************
*** 176,181 ****
--- 176,183 ----
  >sbp.ri.cmu.edu         #Carnegie Mellon University - Sensor Based Planning Lab
  128.2.179.12                    #nihao.sbp.ri.cmu.edu
  128.2.179.113                   #youtheman.sbp.ri.cmu.edu
+ >cnf.cornell.edu        #Cornell Nanoscale Science and Technology Facility
+ 128.253.198.9                   #hole.cnf.cornell.edu
  >msc.cornell.edu        #Cornell University Materials Science Center
  128.84.231.242                  #miranda.ccmr.cornell.edu
  128.84.241.35                   #co.ccmr.cornell.edu
***************
*** 203,210 ****
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.7.15.89                      #rattle.mit.edu.
! 18.7.15.93                      #hum.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
--- 205,212 ----
  18.158.0.37                     #prill.mit.edu.
  >dev.mit.edu            #MIT/IS Development cell
  18.7.1.70                       #wham.mit.edu.
! 18.92.1.219                     #click.mit.edu.
! 18.92.1.220                     #whirr.mit.edu.
  >net.mit.edu            #MIT/Network Group cell
  18.7.7.73                       #gracie.mit.edu
  18.7.21.95                      #george.mit.edu
***************
*** 275,284 ****
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comm. and Tech. Services, California U.S.A
! 128.114.129.14                  #elan.ucsc.edu
! 128.114.129.15                  #ichabod.ucsc.edu
! 128.114.129.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
--- 277,286 ----
  169.237.105.93                  #home3.ucdavis.edu
  >physics.ucsb.edu       #UC Santa Barbara, Physics Dept
  128.111.18.161                  #ledzeppelin.physics.ucsb.edu
! >cats.ucsc.edu          #UC Santa Cruz, Comp and Tech Services, California U.S.A
! 128.114.123.14                  #elan.ucsc.edu
! 128.114.123.15                  #ichabod.ucsc.edu
! 128.114.123.18                  #maneki.ucsc.edu
  >acm.uiuc.edu           #ACM at the University of Illinois
  128.174.251.8                   #alnitak.acm.uiuc.edu
  128.174.251.9                   #alnilam.acm.uiuc.edu
***************
*** 313,320 ****
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public Health
! 141.211.50.41                   #afssph0.sph.umich.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
--- 315,328 ----
  141.211.211.53                  #gerow.lsa.umich.edu
  141.211.211.72                  #collines.lsa.umich.edu
  141.211.211.153                 #hodges.lsa.umich.edu
! >sph.umich.edu          #University of Michigan -- School of Public  Health
! 141.211.51.137                  #afssph7.sph.umich.edu
! 141.211.51.139                  #afssph0.sph.umich.edu
! 141.211.51.142                  #afssph6.sph.umich.edu
! >isis.unc.edu           #Univ. of NC at Chapel Hill - ITS
! 152.2.1.5                       #db0.isis.unc.edu
! 152.2.1.6                       #db1.isis.unc.edu
! 152.2.1.7                       #db2.isis.unc.edu
  >physics.unc.edu        #Univ. of NC at Chapel Hill, Dept. of Physics
  152.2.4.1                       #who.physics.unc.edu
  152.2.4.3                       #what.physics.unc.edu
***************
*** 324,331 ****
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.99.222.9                    #lenny.eng.utah.edu
! 155.99.222.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
--- 332,339 ----
  152.15.93.186                   #as-ece1.uncc.edu
  152.15.181.175                  #as-me1.uncc.edu
  >eng.utah.edu           #University of Utah - Engineering
! 155.98.111.9                    #lenny.eng.utah.edu
! 155.98.111.10                   #carl.eng.utah.edu
  >cs.uwm.edu             #University of Wisconsin--Milwaukee
  129.89.38.124                   #solomons.cs.uwm.edu
  >cs.wisc.edu            #Univ. of Wisconsin-Madison, Computer Sciences Dept.
***************
*** 477,484 ****
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
- 4.36.43.102                     #dol-guldur.1ts.org
  69.25.196.51                    #pancake.1ts.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
--- 485,493 ----
  192.16.185.26                   #afs1.nikhef.nl
  192.16.185.27                   #afs2.nikhef.nl
  >1ts.org                #1TS.ORG, Cambridge, MA
  69.25.196.51                    #pancake.1ts.org
+ >acm-csuf.org           #California State Univerisity Fullerton ACM
+ 137.151.29.193                  #afs1.acm-csuf.org
  >bazquux.org            #Baz Quux Organization
  66.207.142.196                  #baxquux.org
  >coed.org               #Adam Pennington's Cell
***************
*** 510,515 ****
--- 519,525 ----
  130.237.24.104                  #afs2.hallf.kth.se
  >isk.kth.se             #Royal Institute of Technology, ISK
  130.237.202.3                   #afsdb1.isk.kth.se
+ 130.237.209.9                   #afsdb3.isk.kth.se
  130.237.209.39                  #ezri.isk.kth.se
  >it.kth.se              #Royal Institute of Technology, IT
  130.237.212.15                  #ptah.it.kth.se
Index: openafs/src/packaging/MacOS/OpenAFS.Info.plist
diff -c openafs/src/packaging/MacOS/OpenAFS.Info.plist:1.2.10.13 openafs/src/packaging/MacOS/OpenAFS.Info.plist:1.2.10.14
*** openafs/src/packaging/MacOS/OpenAFS.Info.plist:1.2.10.13	Thu Mar  8 19:46:15 2007
--- openafs/src/packaging/MacOS/OpenAFS.Info.plist	Mon Mar 19 20:30:31 2007
***************
*** 3,15 ****
  <plist version="1.0">
  <dict>
  	<key>CFBundleGetInfoString</key>
! 	<string>OpenAFS 1.5.16</string>
  	<key>CFBundleIdentifier</key>
  	<string>org.openafs.OpenAFS.pkg</string>
  	<key>CFBundleName</key>
  	<string>OpenAFS</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.16</string>
  	<key>IFMajorVersion</key>
  	<integer>1</integer>
  	<key>IFMinorVersion</key>
--- 3,15 ----
  <plist version="1.0">
  <dict>
  	<key>CFBundleGetInfoString</key>
! 	<string>OpenAFS 1.5.17</string>
  	<key>CFBundleIdentifier</key>
  	<string>org.openafs.OpenAFS.pkg</string>
  	<key>CFBundleName</key>
  	<string>OpenAFS</string>
  	<key>CFBundleShortVersionString</key>
! 	<string>1.5.17</string>
  	<key>IFMajorVersion</key>
  	<integer>1</integer>
  	<key>IFMinorVersion</key>
Index: openafs/src/packaging/MacOS/OpenAFS.info
diff -c openafs/src/packaging/MacOS/OpenAFS.info:1.1.12.12 openafs/src/packaging/MacOS/OpenAFS.info:1.1.12.13
*** openafs/src/packaging/MacOS/OpenAFS.info:1.1.12.12	Thu Mar  8 19:46:15 2007
--- openafs/src/packaging/MacOS/OpenAFS.info	Mon Mar 19 20:30:31 2007
***************
*** 1,5 ****
  Title OpenAFS
! Version 1.5.16
  Description The OpenAFS distributed filesystem. This package installs an almost-ready-to-run client for OpenAFS. see http://www.openafs.org for more information.
  DefaultLocation /
  Diskname (null)
--- 1,5 ----
  Title OpenAFS
! Version 1.5.17
  Description The OpenAFS distributed filesystem. This package installs an almost-ready-to-run client for OpenAFS. see http://www.openafs.org for more information.
  DefaultLocation /
  Diskname (null)
