* scc_maybe.c (krb5_scc_open_file): fixed typo (extra & in
authorTom Yu <tlyu@mit.edu>
Sat, 25 Mar 1995 20:15:14 +0000 (20:15 +0000)
committerTom Yu <tlyu@mit.edu>
Sat, 25 Mar 1995 20:15:14 +0000 (20:15 +0000)
reference to fvno_bytes)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5248 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/stdio/ChangeLog
src/lib/krb5/ccache/stdio/scc_maybe.c

index 909aa5c22c6b3ed206bf48ae1ba1d8910b97e13d..5fda9a66de5fef928a6220f24a56c8de5fa730a2 100644 (file)
@@ -1,5 +1,8 @@
 Sat Mar 25 14:42:37 1995  Tom Yu  (tlyu@dragons-lair)
 
+       * scc_maybe.c (krb5_scc_open_file): fixed typo (extra & in
+       reference to fvno_bytes)
+
        * scc_gennew.c: Ultrix cc (and K&R compilers) doesn't deal with
        automatic aggregate initialization, so fixed scc_fvno usage.
 
index 510299a6675062c50d1767fe2971ea3533490cb1..f693feec091f64fd4ddf373c1edfb92ad36a5dbd 100644 (file)
@@ -156,7 +156,7 @@ krb5_scc_open_file (context, id, mode)
         }
      } else {
         /* verify a valid version number is there */
-        if (!fread((char *)&fvno_bytes, sizeof(fvno_bytes), 1, f)) {
+        if (!fread((char *)fvno_bytes, sizeof(fvno_bytes), 1, f)) {
             (void) krb5_unlock_file(context, f, data->filename);
             (void) fclose(f);
             return KRB5_CCACHE_BADVNO;