]> git.saurik.com Git - apple/system_cmds.git/blobdiff - at.tproj/perm.c
system_cmds-735.tar.gz
[apple/system_cmds.git] / at.tproj / perm.c
index 872ce44dbae7b4525d7b3678173a61646a3e8f67..82bab872cb093fa4bf4f7e146cc606022728c44a 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
  *  perm.c - check user permission for at(1)
  *  Copyright (C) 1994  Thomas Koenig
  *
@@ -41,6 +41,7 @@ __FBSDID("$FreeBSD: src/usr.bin/at/perm.c,v 1.13 2001/12/10 21:13:01 dwmalone Ex
 /* Local headers */
 
 #include "at.h"
+#include "panic.h"
 #include "perm.h"
 #include "privs.h"
 
@@ -59,10 +60,10 @@ static int check_for_user(FILE *fp,const char *name);
 static int check_for_user(FILE *fp,const char *name)
 {
     char *buffer;
-    size_t len;
+    int len;
     int found = 0;
 
-    len = strlen(name);
+    len = (int)strlen(name);
     if ((buffer = malloc(len+2)) == NULL)
        errx(EXIT_FAILURE, "virtual memory exhausted");