From 068a90a92337d8476a69ed0048723e7587f6209f Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 27 Aug 2014 20:26:01 -0400 Subject: Now that the transition is done we can restore the gpsd_report name. All regression tests pass. --- shmexport.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'shmexport.c') diff --git a/shmexport.c b/shmexport.c index adb379de..981a6ec2 100644 --- a/shmexport.c +++ b/shmexport.c @@ -37,7 +37,7 @@ bool shm_acquire(struct gps_context_t *context) shmid = shmget((key_t)GPSD_KEY, sizeof(struct gps_data_t), (int)(IPC_CREAT|0666)); if (shmid == -1) { - gpsd_notify(&context->errout, LOG_ERROR, + gpsd_report(&context->errout, LOG_ERROR, "shmget(%ld, %zd, 0666) failed: %s\n", (long int)GPSD_KEY, sizeof(struct gps_data_t), @@ -46,11 +46,11 @@ bool shm_acquire(struct gps_context_t *context) } context->shmexport = (char *)shmat(shmid, 0, 0); if ((int)(long)context->shmexport == -1) { - gpsd_notify(&context->errout, LOG_ERROR, "shmat failed: %s\n", strerror(errno)); + gpsd_report(&context->errout, LOG_ERROR, "shmat failed: %s\n", strerror(errno)); context->shmexport = NULL; return false; } - gpsd_notify(&context->errout, LOG_PROG, + gpsd_report(&context->errout, LOG_PROG, "shmat() succeeded, segment %d\n", shmid); return true; } -- cgit v1.2.1