Browse Source

Fix line indentation

This is purely cosmetic.
tags/1.0
Timo Röhling 12 years ago
parent
commit
521be6ecc3
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      postsrsd.c

+ 5
- 5
postsrsd.c View File

260
         user = strdup(optarg);
260
         user = strdup(optarg);
261
         break;
261
         break;
262
       case 'c':
262
       case 'c':
263
-	chroot_dir = strdup(optarg);
264
-	break;
263
+        chroot_dir = strdup(optarg);
264
+        break;
265
       case 'D':
265
       case 'D':
266
         daemonize = TRUE;
266
         daemonize = TRUE;
267
         break;
267
         break;
268
       case 'h':
268
       case 'h':
269
-	show_help();
269
+        show_help();
270
         return EXIT_SUCCESS;
270
         return EXIT_SUCCESS;
271
       case 'v':
271
       case 'v':
272
-	fprintf (stdout, "%s\n", VERSION);
273
-	return EXIT_SUCCESS;
272
+        fprintf (stdout, "%s\n", VERSION);
273
+        return EXIT_SUCCESS;
274
     }
274
     }
275
   }
275
   }
276
   if (domain == NULL) {
276
   if (domain == NULL) {

Loading…
Cancel
Save