From c4db974e346100b4a30f438a9dec3e9163baade5 Mon Sep 17 00:00:00 2001 From: tzafrir Date: Tue, 21 Aug 2007 08:56:51 +0000 Subject: * Add an explicit mode to the callto open (the default one that is used anyway). * Clarify error message. * Remove the mode parameter when opening a zap device (it is ignored anyway). Fix patgen's usage message while we're there. closes #10505 on Zaptel trunk. Merged revisions 2914 via svnmerge from https://origsvn.digium.com/svn/zaptel/branches/1.2 Merged revisions 2915 via svnmerge from https://origsvn.digium.com/svn/zaptel/branches/1.4 git-svn-id: http://svn.digium.com/svn/zaptel/trunk@2916 5390a7c7-147a-4af0-8ec9-7488f05a26cb --- patgen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'patgen.c') diff --git a/patgen.c b/patgen.c index f3f1769..8c980e1 100644 --- a/patgen.c +++ b/patgen.c @@ -37,10 +37,10 @@ int main(int argc, char *argv[]) unsigned char c=0; unsigned char outbuf[BLOCK_SIZE]; if (argc < 2) { - fprintf(stderr, "Usage: markhdlctest \n"); + fprintf(stderr, "Usage: %s \n",argv[0]); exit(1); } - fd = open(argv[1], O_RDWR, 0600); + fd = open(argv[1], O_RDWR); if (fd < 0) { fprintf(stderr, "Unable to open %s: %s\n", argv[1], strerror(errno)); exit(1); -- cgit v1.2.3