Displaying 3 results from an estimated 3 matches for "make_dir".
2003 Jul 23
5
Asterisk as a stand alone voice mail server
I'm sure asterisk would make a great stand alone voice mail server.
Basically I want to get rid of our voice mail system and replace it with
*, but the problem is we use a cisco cluster with skinny clients. So I
was thinking the way to contact a * server, would be through our 3640.
But so far any attempt has failed. I am wondering if anyone has done
something similar. Just want to verify the
2004 Jun 26
2
Newbie needs help
I've been banging my head on a brick wall for about an hour now trying
to understand why the following doesn't work (which is even provided as
an example in the distribution!).
The goal is to create a voicemail-only extension not associated with a
phone. I'd rather not have an extension dedicated to VoicemailMain(),
so I would like the user to be able to hit '*' during
2006 Aug 24
0
[patch] mkdir use and add usage
..."%s: invalid option -%c\n",
progname, optopt);
- exit(1);
+ usage();
}
} while (1);
- if (optind == argc) {
- fprintf(stderr, "Usage: %s [-p] [-m mode] dir...\n", progname);
- exit(1);
- }
+ if (optind == argc)
+ usage();
while (optind < argc) {
if (make_dir(argv[optind]))
--
maks