]> git.saurik.com Git - apple/system_cmds.git/commitdiff
system_cmds-336.1.8.tar.gz mac-os-x-10410ppc mac-os-x-1049ppc v336.1.8
authorApple <opensource@apple.com>
Fri, 12 Jan 2007 01:54:28 +0000 (01:54 +0000)
committerApple <opensource@apple.com>
Fri, 12 Jan 2007 01:54:28 +0000 (01:54 +0000)
at.tproj/Makefile.dist
atrun.tproj/Makefile.dist
atrun.tproj/atrun.8
atrun.tproj/atrun.c
getty.tproj/getty.8
getty.tproj/gettytab.5
getty.tproj/ttys.5
zic.tproj/datfiles/tzdata2006a.tar.gz [deleted file]
zic.tproj/datfiles/tzdata2007a.tar.gz [new file with mode: 0644]

index bdfa51536b78a3795555a24030c4880ed298f1fd..1468a6c005bfe13a327453e25718f27cf941fa07 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: Makefile.dist,v 1.1.1.1 1999/05/02 04:21:18 wsanchez Exp $
+#      $Id: Makefile.dist,v 1.1 1999/05/02 04:21:18 wsanchez Exp $
 
 PROG=  at
 SRCS=  at.c panic.c parsetime.c
 
 PROG=  at
 SRCS=  at.c panic.c parsetime.c
index 726a2e79e4a34a83a0c1fe8349b06fde08457d7e..0980f04e542d48e0acb48b97235ba920415c4842 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: Makefile.dist,v 1.1.1.1 1999/05/02 04:21:19 wsanchez Exp $
+#      $Id: Makefile.dist,v 1.1 1999/05/02 04:21:19 wsanchez Exp $
 
 PROG=  atrun
 BINDIR=        /usr/libexec
 
 PROG=  atrun
 BINDIR=        /usr/libexec
index 7ebc04e191cdfc07e7b474e4e4443b22c10473c7..8d50f58c4d763fb4a8cf736b6dd429a9aa574343 100644 (file)
@@ -27,7 +27,7 @@
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.\"    $Id: atrun.8,v 1.1.1.1 1999/05/02 04:21:19 wsanchez Exp $
+.\"    $Id: atrun.8,v 1.1 1999/05/02 04:21:19 wsanchez Exp $
 .\"
 .Dd December 5, 1993
 .Dt ATRUN 8
 .\"
 .Dd December 5, 1993
 .Dt ATRUN 8
index 9d52ffa888ecfc55b845f75b41bdeab1b1c1b7ab..4eac2cc87b9916038f3a0c6be255be272c516a7f 100644 (file)
@@ -55,11 +55,7 @@ static const char rcsid[] =
 #include <getopt.h>
 #endif
 
 #include <getopt.h>
 #endif
 
-#if (MAXLOGNAME-1) > UT_NAMESIZE
-#define LOGNAMESIZE UT_NAMESIZE
-#else
 #define LOGNAMESIZE (MAXLOGNAME-1)
 #define LOGNAMESIZE (MAXLOGNAME-1)
-#endif
 
 /* Local headers */
 
 
 /* Local headers */
 
@@ -119,7 +115,8 @@ run_file(const char *filename, uid_t uid, gid_t gid)
     pid_t pid;
     int fd_out, fd_in;
     int queue;
     pid_t pid;
     int fd_out, fd_in;
     int queue;
-    char mailbuf[LOGNAMESIZE + 1], fmt[49];
+    char mailbuf[LOGNAMESIZE + 1];
+    char *fmt = NULL;
     char *mailname = NULL;
     FILE *stream;
     int send_mail = 0;
     char *mailname = NULL;
     FILE *stream;
     int send_mail = 0;
@@ -208,13 +205,15 @@ run_file(const char *filename, uid_t uid, gid_t gid)
 
     fcntl(fd_in, F_SETFD, fflags & ~FD_CLOEXEC);
 
 
     fcntl(fd_in, F_SETFD, fflags & ~FD_CLOEXEC);
 
-    snprintf(fmt, sizeof(fmt),
-       "#!/bin/sh\n# atrun uid=%%ld gid=%%ld\n# mail %%%ds %%d",
-                          LOGNAMESIZE);
+    asprintf(&fmt, "%s%d%s",
+            "#!/bin/sh\n# atrun uid=%ld gid=%ld\n# mail %",
+            LOGNAMESIZE,
+            "s %d");
     if (fscanf(stream, fmt, &nuid, &ngid, mailbuf, &send_mail) != 4) {
        syslog(LOG_ERR,"File %s is in wrong format - aborting", filename);
        exit(EXIT_FAILURE);
     }
     if (fscanf(stream, fmt, &nuid, &ngid, mailbuf, &send_mail) != 4) {
        syslog(LOG_ERR,"File %s is in wrong format - aborting", filename);
        exit(EXIT_FAILURE);
     }
+    free(fmt);
     if (mailbuf[0] == '-') {
        syslog(LOG_ERR,"illegal mail name %s in %s",mailbuf,filename);
        exit(EXIT_FAILURE);
     if (mailbuf[0] == '-') {
        syslog(LOG_ERR,"illegal mail name %s in %s",mailbuf,filename);
        exit(EXIT_FAILURE);
index cc6612fa64961d8d682c9027c085b939fab36f9a..a97f05331b3af45563c14f664c945345cb1c076e 100644 (file)
@@ -30,7 +30,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"     from: @(#)getty.8      8.1 (Berkeley) 6/4/93
 .\" SUCH DAMAGE.
 .\"
 .\"     from: @(#)getty.8      8.1 (Berkeley) 6/4/93
-.\"    $Id: getty.8,v 1.1.1.1 1999/05/02 04:21:29 wsanchez Exp $
+.\"    $Id: getty.8,v 1.1 1999/05/02 04:21:29 wsanchez Exp $
 .\"
 .Dd June 4, 1993
 .Dt GETTY 8
 .\"
 .Dd June 4, 1993
 .Dt GETTY 8
index 51d4cfede5b0397529e76d8906584aa0c641e059..38e9a96a6aa2f57f027adb428aeb3889fffcded9 100644 (file)
@@ -30,7 +30,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"     from: @(#)gettytab.5   8.4 (Berkeley) 4/19/94
 .\" SUCH DAMAGE.
 .\"
 .\"     from: @(#)gettytab.5   8.4 (Berkeley) 4/19/94
-.\"    $Id: gettytab.5,v 1.1.1.1 1999/05/02 04:21:29 wsanchez Exp $
+.\"    $Id: gettytab.5,v 1.1 1999/05/02 04:21:29 wsanchez Exp $
 .\"
 .Dd April 19, 1994
 .Dt GETTYTAB 5
 .\"
 .Dd April 19, 1994
 .Dt GETTYTAB 5
index b2f6584f6ebb840e79efff033cfb15c36b4fd38b..3a2fc45bba6a055a26c86f55bbeb4feb0a088ceb 100644 (file)
@@ -30,7 +30,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"     from: @(#)ttys.5       8.1 (Berkeley) 6/4/93
 .\" SUCH DAMAGE.
 .\"
 .\"     from: @(#)ttys.5       8.1 (Berkeley) 6/4/93
-.\"    $Id: ttys.5,v 1.1.1.1 1999/05/02 04:21:29 wsanchez Exp $
+.\"    $Id: ttys.5,v 1.1 1999/05/02 04:21:29 wsanchez Exp $
 .\"
 .Dd June 4, 1993
 .Dt TTYS 5
 .\"
 .Dd June 4, 1993
 .Dt TTYS 5
diff --git a/zic.tproj/datfiles/tzdata2006a.tar.gz b/zic.tproj/datfiles/tzdata2006a.tar.gz
deleted file mode 100644 (file)
index 3e4e878..0000000
Binary files a/zic.tproj/datfiles/tzdata2006a.tar.gz and /dev/null differ
diff --git a/zic.tproj/datfiles/tzdata2007a.tar.gz b/zic.tproj/datfiles/tzdata2007a.tar.gz
new file mode 100644 (file)
index 0000000..b242def
Binary files /dev/null and b/zic.tproj/datfiles/tzdata2007a.tar.gz differ