summaryrefslogtreecommitdiffstats
path: root/eBones/lib/libkrb
diff options
context:
space:
mode:
Diffstat (limited to 'eBones/lib/libkrb')
-rw-r--r--eBones/lib/libkrb/in_tkt.c8
-rw-r--r--eBones/lib/libkrb/tkt_string.c6
2 files changed, 7 insertions, 7 deletions
diff --git a/eBones/lib/libkrb/in_tkt.c b/eBones/lib/libkrb/in_tkt.c
index 1f6ee8a..fe006a1 100644
--- a/eBones/lib/libkrb/in_tkt.c
+++ b/eBones/lib/libkrb/in_tkt.c
@@ -5,13 +5,13 @@
* <Copyright.MIT>.
*
* from: kt.c,v 4.9 89/10/25 19:03:35 qjb Exp $
- * $Id: in_tkt.c,v 1.6 1995/07/18 16:38:49 mark Exp $
+ * $Id: in_tkt.c,v 1.4 1995/09/07 21:38:04 markm Exp $
*/
#if 0
#ifndef lint
static char rcsid[] =
-"$Id: in_tkt.c,v 1.6 1995/07/18 16:38:49 mark Exp $";
+"$Id: in_tkt.c,v 1.4 1995/09/07 21:38:04 markm Exp $";
#endif /* lint */
#endif
@@ -95,7 +95,7 @@ in_tkt(pname,pinst)
return(KFAILURE);
} else
if (krb_debug)
- printf("swapped UID's %ld and %ld\n",metoo,me);
+ printf("swapped UID's %d and %d\n",metoo,me);
}
if ((tktfile = open(file,O_CREAT | O_TRUNC | O_WRONLY,0600)) < 0) {
if (krb_debug)
@@ -110,7 +110,7 @@ in_tkt(pname,pinst)
return(KFAILURE);
} else
if (krb_debug)
- printf("swapped UID's %ld and %ld\n",me,metoo);
+ printf("swapped UID's %d and %d\n",me,metoo);
}
if (lstat(file,&buf) < 0) {
if (krb_debug)
diff --git a/eBones/lib/libkrb/tkt_string.c b/eBones/lib/libkrb/tkt_string.c
index d944833..f7ae210 100644
--- a/eBones/lib/libkrb/tkt_string.c
+++ b/eBones/lib/libkrb/tkt_string.c
@@ -5,13 +5,13 @@
* <Copyright.MIT>.
*
* from: tkt_string.c,v 4.6 89/01/05 12:31:51 raeburn Exp $
- * $Id: tkt_string.c,v 1.3 1995/07/18 16:39:52 mark Exp $
+ * $Id: tkt_string.c,v 1.3 1995/09/07 21:38:35 markm Exp $
*/
#if 0
#ifndef lint
static char *rcsid =
-"$Id: tkt_string.c,v 1.3 1995/07/18 16:39:52 mark Exp $";
+"$Id: tkt_string.c,v 1.3 1995/09/07 21:38:35 markm Exp $";
#endif /* lint */
#endif
@@ -51,7 +51,7 @@ char *tkt_string()
} else {
/* 32 bits of signed integer will always fit in 11 characters
(including the sign), so no need to worry about overflow */
- (void) sprintf(krb_ticket_string, "%s%ld",TKT_ROOT,getuid());
+ (void) sprintf(krb_ticket_string, "%s%d",TKT_ROOT,getuid());
}
}
return krb_ticket_string;
OpenPOWER on IntegriCloud