Browse Source

Small typo fix.

AdrianSimionov 9 năm trước cách đây
mục cha
commit
3f7895e309
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/docsis.c

+ 1 - 1
src/docsis.c

@@ -183,7 +183,7 @@ add_dialplan (unsigned char *tlvbuf, unsigned int tlvbuflen) {
   fseek(dialplan_file, 0, SEEK_SET);
   fseek(dialplan_file, 0, SEEK_SET);
   dialplan_buffer = malloc(fileSize);
   dialplan_buffer = malloc(fileSize);
   if (!dialplan_buffer) {
   if (!dialplan_buffer) {
-    fprintf(stderr, "Fatal error allocating memory for diaplan buffer, closing.\n");
+    fprintf(stderr, "Fatal error allocating memory for dialplan buffer, closing.\n");
     exit(-1);
     exit(-1);
   }
   }
   fread(dialplan_buffer, fileSize, 1, dialplan_file);
   fread(dialplan_buffer, fileSize, 1, dialplan_file);