diff options
| author | Richard M. Stallman | 1992-08-22 07:10:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-08-22 07:10:23 +0000 |
| commit | 61a93162c65890ab7fb9de8a9d4cd1d09a0a0242 (patch) | |
| tree | 94fa7dbfa7a12f687218bec23a9749f0a5e51daa /lib-src | |
| parent | ce4c9c9080cbab12a6097b6bcc2e77662668ce8c (diff) | |
| download | emacs-61a93162c65890ab7fb9de8a9d4cd1d09a0a0242.tar.gz emacs-61a93162c65890ab7fb9de8a9d4cd1d09a0a0242.zip | |
entered into RCS
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/emacsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 5f1a41a502d..e3c63b6abb0 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -212,7 +212,7 @@ main (argc, argv) | |||
| 212 | strcat (buf, "/.emacs_server"); | 212 | strcat (buf, "/.emacs_server"); |
| 213 | creat (buf, 0600); | 213 | creat (buf, 0600); |
| 214 | key = ftok (buf, 1); /* unlikely to be anyone else using it */ | 214 | key = ftok (buf, 1); /* unlikely to be anyone else using it */ |
| 215 | s = msgget (key, 0600); | 215 | s = msgget (key, 0600 | IPC_CREAT); |
| 216 | if (s == -1) | 216 | if (s == -1) |
| 217 | { | 217 | { |
| 218 | fprintf (stderr, "%s: ", argv[0]); | 218 | fprintf (stderr, "%s: ", argv[0]); |