Deleted Added
full compact
dma.c (289123) dma.c (289144)
1/*
2 * Copyright (c) 2008-2014, Simon Schubert <2@0x2c.org>.
3 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
4 *
5 * This code is derived from software contributed to The DragonFly Project
6 * by Simon Schubert <2@0x2c.org>.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 582 unchanged lines hidden (view full) ---

591 run_queue(&queue);
592 return (0);
593 }
594
595 if (read_aliases() != 0)
596 errlog(EX_SOFTWARE, "could not parse aliases file `%s'", config.aliases);
597
598 if ((sender = set_from(&queue, sender)) == NULL)
1/*
2 * Copyright (c) 2008-2014, Simon Schubert <2@0x2c.org>.
3 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
4 *
5 * This code is derived from software contributed to The DragonFly Project
6 * by Simon Schubert <2@0x2c.org>.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 582 unchanged lines hidden (view full) ---

591 run_queue(&queue);
592 return (0);
593 }
594
595 if (read_aliases() != 0)
596 errlog(EX_SOFTWARE, "could not parse aliases file `%s'", config.aliases);
597
598 if ((sender = set_from(&queue, sender)) == NULL)
599 errlog(EX_SOFTWARE, NULL);
599 errlog(EX_SOFTWARE, "set_from()");
600
601 if (newspoolf(&queue) != 0)
602 errlog(EX_CANTCREAT, "can not create temp file in `%s'", config.spooldir);
603
604 setlogident("%s", queue.id);
605
606 for (i = 0; i < argc; i++) {
607 if (add_recp(&queue, argv[i], EXPAND_WILDCARD) != 0)

--- 25 unchanged lines hidden ---
600
601 if (newspoolf(&queue) != 0)
602 errlog(EX_CANTCREAT, "can not create temp file in `%s'", config.spooldir);
603
604 setlogident("%s", queue.id);
605
606 for (i = 0; i < argc; i++) {
607 if (add_recp(&queue, argv[i], EXPAND_WILDCARD) != 0)

--- 25 unchanged lines hidden ---