Fix bad comment terminator in stdcc_util.c which was stopping it from compiling
authorTheodore Tso <tytso@mit.edu>
Tue, 9 Feb 1999 02:56:13 +0000 (02:56 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 9 Feb 1999 02:56:13 +0000 (02:56 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11157 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/ccapi/stdcc_util.c

index 3741e22ebe48aaec68b626532827f45a636bf7cf..dd44109ad8b4bcdefdc5459ca0608eb26c618432 100644 (file)
@@ -187,7 +187,7 @@ void dupCCtoK5(krb5_context context, cc_creds *src, krb5_creds *dest) {
        dest->keyblock.contents = (krb5_octet *)malloc(dest->keyblock.length);
        memcpy(dest->keyblock.contents, src->keyblock.data, dest->keyblock.length);
        
-       /* copy times *//
+       /* copy times */
        dest->times.authtime = src->authtime;
        dest->times.starttime = src->starttime;
        dest->times.endtime = src->endtime;